summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@schwinge.name>2010-10-08 23:26:30 +0200
committerThomas Schwinge <thomas@schwinge.name>2010-10-08 23:26:30 +0200
commit6e3b5f97fe71aa9e2bd65bb790d9224187644754 (patch)
tree3df00b0d3b61e98fa764c2db464aba52d1cd6979
parentb383b24fa7386037fd20fba3b19060d7d43b952d (diff)
open_issues/config_guess_uname: New.
-rw-r--r--open_issues/config_guess_uname.mdwn34
1 files changed, 34 insertions, 0 deletions
diff --git a/open_issues/config_guess_uname.mdwn b/open_issues/config_guess_uname.mdwn
new file mode 100644
index 00000000..54c830a4
--- /dev/null
+++ b/open_issues/config_guess_uname.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]]."]]"""]]
+
+[[!meta title="config.guess / uname"]]
+
+Same machine; GNU/Hurd running as a Xen domU (this fact very hopefully being
+irrelevant):
+
+GNU/Linux:
+
+ $ [...]/config.guess
+ i686-pc-linux-gnu
+ $ uname -a
+ Linux zenhost 2.6.26-2-xen-686 #1 SMP Sun Jun 21 09:15:17 UTC 2009 i686 GNU/Linux
+
+GNU/Hurd:
+
+ $ [...]/config.guess
+ i386-unknown-gnu0.3
+ $ uname -a
+ GNU grubber.bddebian.com 0.3 GNU-Mach 1.3.99/Hurd-0.3 i386-AT386 GNU
+
+This causes autoconf-based packages to be configured for i386 instead of i686.
+
+This is very likely a [[!taglink open_issue_gnumach]], and [[tschwinge]] seems
+to remember that someone has been looking at this before, but apparently it has
+not yet been fixed.