public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
@ 2009-04-11  4:58 jason dot vas dot dias at gmail dot com
  2009-04-11  5:11 ` [Bug libc/10060] " drepper at redhat dot com
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: jason dot vas dot dias at gmail dot com @ 2009-04-11  4:58 UTC (permalink / raw)
  To: glibc-bugs

Having consistently got this behaviour when building i686-pc-gnu-linux
under x86_64-pc-gnu-linux ( Gentoo and Fedora 10 both ) , without any
third-party "Linux distribution" patches, I've been trying to find a
simple patch to reliably fix this problem,  so I actually mounted 
over NFS the latest CVS snapshot from :
 $ cvs -d:pserver:anoncvs@sources.redhat.com:/cvs/glibc co libc
and then mounted it with a genuine i686 host ( Fedora Core 6 ) and 
got exactly the same set of errors as when attempting to build
in 32-bit i686 mode on x86_64, when building natively on i686 FC-6;
so it really cannot be any sort of environment gcc / binutils problem
at all, since the same problem occurs on FC-6 :
$ gcc --version
Using built-in specs.
Target: i386-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--enable-checking=release --with-system-zlib --enable-__cxa_atexit
--disable-libunwind-exceptions --enable-libgcj-multifile
--enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk
--disable-dssi --enable-plugin
--with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic
--host=i386-redhat-linux
Thread model: posix
gcc version 4.1.2 20070626 (Red Hat 4.1.2-13)
:
$ ld --version
GNU ld version 2.17.50.0.6-5.fc6 20061020
Copyright 2005 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License.  This program has absolutely no warranty.

As under:

$ gcc --version; ld --version
gcc (Linux 2.6.29 GCC 4.3.3 JVD 2009-02-24) 4.3.4 20090223 (prerelease)
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

GNU ld (GNU Binutils) 2.19.51.20090319
Copyright 2008 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) a later version.

(ie latest gcc 4.3.x 4.4.x and binutils on an x86_64 ). 

The problem for both builds was simply that some parts of the code refuse to
auto-determine a "pentium" default CPU and enable "i686" gcc TLS, either under
$ uname -a; cat /etc/fedora-release
Linux jvdsibm 2.6.22.14-72.fc6 #1 SMP Wed Nov 21 15:12:59 EST 2007 i686 i686
i386 GNU/Linux
Fedora Core release 6 (Zod)
or under:
$ uname -a; cat /etc/gentoo-release
Linux jvdspc 2.6.29-rc8-tip-jvd #2 SMP Thu Apr 9 12:44:15 EDT 2009 x86_64 AMD
Turion(tm) 64 X2 Mobile Technology TL-64 AuthenticAMD GNU/Linux
Gentoo Base System release 1.12.12
or under:
$ uname -a; cat /etc/fedora-release
Linux jvdspc 2.6.29-rc8-tip-jvd #2 SMP Thu Apr 9 12:44:15 EDT 2009 x86_64 x86_64
x86_64 GNU/Linux
Fedora release 10 (Cambridge)

GLIBC configure line :
 $ ../configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/usr/etc/32
--sharedstatedir=/usr/var/32 --datarootdir=/usr/share/32 --enable-shared
--enable-tls --enable-threads=posix 

Yes, I want those weird */32 directories; I'm trying to build, eventually,
for a x86_64 i386 mode glibc.

But first just get it to build with those configure args on ANY i686 ! -
(I'd rather not convert my ancient and slow i686 laptop to FC8/10 - it's
happy with FC-6 and so am I - but why can't it use the above configure
args and build glibc ? ).

These errors appear in the make.log with the above configure arguments :

$ make 2>&1 | tee make.log || grep 'sync_fetch_and_add' make.log
...
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_getpw_r.c:232: undefined reference
to `__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_getgr_r.c:321: undefined reference
to `__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os:/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_gethst_r.c:413:
more undefined references to `__sync_fetch_and_add_4' follow

I think these will go away if I rebuild from scratch with some --with-cpu=i686
or similar argument, no ? So why can't glibc determine the correct 
TLS model to use when given "--enable-tls" and "build=i686-*"  and when
uname -m == 'i686' and its actually running on a genuine i686 ?
Why MUST I use a --with-cpu argument when the above is the case ?

-- 
           Summary: 2.9.90 configure still does not figure out i686 (Pentium
                    i686) without --with-cpu=
           Product: glibc
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: jason dot vas dot dias at gmail dot com
                CC: glibc-bugs at sources dot redhat dot com
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
@ 2009-04-11  5:11 ` drepper at redhat dot com
  2009-04-11  8:22 ` jason dot vas dot dias at gmail dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: drepper at redhat dot com @ 2009-04-11  5:11 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2009-04-11 05:11 -------
Configuring works.  You have to provide all necessary information.  There will
be now change.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
  2009-04-11  5:11 ` [Bug libc/10060] " drepper at redhat dot com
@ 2009-04-11  8:22 ` jason dot vas dot dias at gmail dot com
  2009-04-11  8:55 ` drepper at redhat dot com
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: jason dot vas dot dias at gmail dot com @ 2009-04-11  8:22 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From jason dot vas dot dias at gmail dot com  2009-04-11 08:22 -------
After having rebuilt after configuration with  "--with-cpu=i686" on the FC-6
i686, I still get these missing symbols:

/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `fallocate':
/jvdspc/jvdsibm/glibc-2.90.9/libc/io/../sysdeps/unix/sysv/linux/i386/fallocate.c:31:
undefined reference to `__call_fallocate'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `__fallocate64_l64':
/jvdspc/jvdsibm/glibc-2.90.9/libc/io/../sysdeps/unix/sysv/linux/i386/fallocate64.c:31:
undefined reference to `__call_fallocate'

And STILL the wrong TLS model:

mv -f /jvdspc/jvdsibm/glibc-2.90.9/libc/x86/shlib.ldsT
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/shlib.lds
gcc   -shared -static-libgcc -Wl,-O1  -Wl,-z,defs
-Wl,-dynamic-linker=/lib/ld-linux.so.2 
-B/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/csu/ 
-Wl,--version-script=/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc.map
-Wl,-soname=libc.so.6 -Wl,-z,combreloc -Wl,-z,relro -Wl,--hash-style=both
-nostdlib -nostartfiles -e __libc_main -L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/math
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/dlfcn
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nss
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nis
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/rt
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/resolv
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/crypt
-L/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nptl
-Wl,-rpath-link=/jvdspc/jvdsibm/glibc-2.90.9/libc/x86:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/math:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/dlfcn:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nss:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nis:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/rt:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/resolv:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/crypt:/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/nptl
-o /jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc.so -T
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/shlib.lds
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/csu/abi-note.o
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf/soinit.os
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf/sofini.os
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf/interp.os
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/elf/ld.so -lgcc
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `__libc_fork':
/jvdspc/jvdsibm/glibc-2.90.9/libc/posix/../nptl/sysdeps/unix/sysv/linux/i386/../fork.c:79:
undefined reference to `__sync_bool_compare_and_swap_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `fallocate':
/jvdspc/jvdsibm/glibc-2.90.9/libc/io/../sysdeps/unix/sysv/linux/i386/fallocate.c:31:
undefined reference to `__call_fallocate'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `__fallocate64_l64':
/jvdspc/jvdsibm/glibc-2.90.9/libc/io/../sysdeps/unix/sysv/linux/i386/fallocate64.c:31:
undefined reference to `__call_fallocate'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function
`__nscd_drop_map_ref':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `nscd_getpw_r':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_getpw_r.c:232: undefined reference
to `__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function
`__nscd_drop_map_ref':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `nscd_getgr_r':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_getgr_r.c:321: undefined reference
to `__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function
`__nscd_drop_map_ref':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd-client.h:320: undefined reference to
`__sync_fetch_and_add_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os:/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_gethst_r.c:413:
more undefined references to `__sync_fetch_and_add_4' follow
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function `__nscd_get_map_ref':
/jvdspc/jvdsibm/glibc-2.90.9/libc/nscd/nscd_helper.c:431: undefined reference to
`__sync_val_compare_and_swap_4'
/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc_pic.os: In function
`*__GI___libc_freeres':
/jvdspc/jvdsibm/glibc-2.90.9/libc/malloc/set-freeres.c:39: undefined reference
to `__sync_bool_compare_and_swap_4'
collect2: ld returned 1 exit status
make[1]: *** [/jvdspc/jvdsibm/glibc-2.90.9/libc/x86/libc.so] Error 1
make[1]: Leaving directory `/jvdspc/jvdsibm/glibc-2.90.9/libc'
make: *** [all] Error 2

I haven't been able to build a pure i386 mode library EXCEPT by patching
with either Red Hat or Gentoo patches while the x86_64 arch builds fine
without them. Why is this ? Why can't the
CVS version simply configure and build with the configure arguments :

$ ../configure --prefix=/usr --libdir=/usr/lib32 --sysconfdir=/usr/etc/32
--sharedstatedir=/usr/var/32 --datarootdir=/usr/share/32 --enable-shared
--enable-tls --enable-threads=posix --with-cpu=i686

I get the same errors as above with either building i686 on i686 (FC-6) or
building i686 under 'setarch i686' on RHEL5 , FC10 or Gentoo .
The only workaround I have found is to edit out the TLS references listed above.







-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
  2009-04-11  5:11 ` [Bug libc/10060] " drepper at redhat dot com
  2009-04-11  8:22 ` jason dot vas dot dias at gmail dot com
@ 2009-04-11  8:55 ` drepper at redhat dot com
  2009-04-11 11:52 ` jason dot vas dot dias at gmail dot com
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: drepper at redhat dot com @ 2009-04-11  8:55 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From drepper at redhat dot com  2009-04-11 08:55 -------


*** This bug has been marked as a duplicate of 333 ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |DUPLICATE


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
                   ` (2 preceding siblings ...)
  2009-04-11  8:55 ` drepper at redhat dot com
@ 2009-04-11 11:52 ` jason dot vas dot dias at gmail dot com
  2009-04-12 22:20 ` jason dot vas dot dias at gmail dot com
  2009-05-27 16:07 ` sergstesh at yahoo dot com
  5 siblings, 0 replies; 7+ messages in thread
From: jason dot vas dot dias at gmail dot com @ 2009-04-11 11:52 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From jason dot vas dot dias at gmail dot com  2009-04-11 11:52 -------
OK, fair enough, you really don't want to discuss configure here - 
but just for my own records, and to assist others who may have similar
problems, I'll document the fixes I find here . 

First :
CFLAGS='-g -O2 -m32 -m96bit-long-double -march=pentium -mtune=generic -pipe'
ASFLAGS='-32'
LDFLAGS='-melf-i386'
ARCH=i686
export CFLAGS ASFLAGS LDFLAGS ARCH
../configure \
        --prefix=/usr \
        --libdir=/usr/lib/32 \
        --sysconfdir=/usr/etc/32 \
        --sharedstatedir=/usr/var/32 \
        --datarootdir=/usr/share/32 \
        --build=i686-pc-linux-gnu   \
        --target=i686-pc-linux-gnu  \
        --host=i686-pc-linux-gnu  \
        --with-headers=%{_prefix}/include --enable-bind-now \
        --with-tls --enable-threads=posix --with-__thread \
        --with-cpu=i686



-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
                   ` (3 preceding siblings ...)
  2009-04-11 11:52 ` jason dot vas dot dias at gmail dot com
@ 2009-04-12 22:20 ` jason dot vas dot dias at gmail dot com
  2009-05-27 16:07 ` sergstesh at yahoo dot com
  5 siblings, 0 replies; 7+ messages in thread
From: jason dot vas dot dias at gmail dot com @ 2009-04-12 22:20 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From jason dot vas dot dias at gmail dot com  2009-04-12 22:20 -------
Aha! It GREATLY helps to have the latest binutils installed - 
part of the problem was that the binutils-2.17.50.0.6-5.fc6 20061020
of FC-6 did not comprehend GLIBC's advanced ld(1) --version-script usage ;
another problem was that GLIBC's advanced GCC TLS requires a libgcc from
at least gcc-4.2.4  .
Couldn't the GLIBC build / configure script say something like :
 "if [ $GCC_VERSION_NUMBER -le 4.1.0 ]; then 
     use_old_gcc_tls()
     use_old_ld_version_script()
   else
     # do it the current way
   fi
  " 
To suggest the above was all that was intended by reporting this "not-a-bug" 
bug report - it is really more of the nature of a "request-for-enhancement"
and should probably have originally been so .
In any case, it really helps to keep track of this issue for my own records -
if someone else finds it useful, then all the better.
Thanks & Regards,
Jason  

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement
            Version|unspecified                 |2.8


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug libc/10060] 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu=
  2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
                   ` (4 preceding siblings ...)
  2009-04-12 22:20 ` jason dot vas dot dias at gmail dot com
@ 2009-05-27 16:07 ` sergstesh at yahoo dot com
  5 siblings, 0 replies; 7+ messages in thread
From: sergstesh at yahoo dot com @ 2009-05-27 16:07 UTC (permalink / raw)
  To: glibc-bugs


------- Additional Comments From sergstesh at yahoo dot com  2009-05-27 16:07 -------
(In reply to comment #1)
> Configuring works.  You have to provide all necessary information.  There will
> be now change.


No, this is YOU, Ulrich Drepper, who, first of all, has to provide all the
necessary info in the documentation and information, and you don't.

glibc-2.10.1 does _not_ build in my environment while under _exactly_ the same
environment glibc-2.9 builds OK, and there is no changes in glibc-2.10.1/INSTALL
file compared to glibc-2.9/INSTALL one.

So it is YOU, Ulrich Drepper, who failed to even mention changes that happened -
according to GNU standards the INSTALL file should contain build instructions,
and YOU, Ulrich Drepper, have failed to put new requirements into the INSTALL file.

Rest assured, I _will_ open another bug report, and now it's a bullet-proof
evidence of regression in build mechanism.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|DUPLICATE                   |


http://sourceware.org/bugzilla/show_bug.cgi?id=10060

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2009-05-27 16:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-11  4:58 [Bug libc/10060] New: 2.9.90 configure still does not figure out i686 (Pentium i686) without --with-cpu= jason dot vas dot dias at gmail dot com
2009-04-11  5:11 ` [Bug libc/10060] " drepper at redhat dot com
2009-04-11  8:22 ` jason dot vas dot dias at gmail dot com
2009-04-11  8:55 ` drepper at redhat dot com
2009-04-11 11:52 ` jason dot vas dot dias at gmail dot com
2009-04-12 22:20 ` jason dot vas dot dias at gmail dot com
2009-05-27 16:07 ` sergstesh at yahoo dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).