public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib
@ 2003-06-12 12:26 ronald@landheer.com
  2003-06-12 13:13 ` [Bug bootstrap/11171] " bangerth@dealii.org
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: ronald@landheer.com @ 2003-06-12 12:26 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171

           Summary: Wrong ctype/OS include files when using Newlib
           Product: gcc
           Version: 3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ronald@landheer.com
                CC: gcc-bugs@gcc.gnu.org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i386-unknown-freebsd4.7

Used configuration line:
$ ../src/configure --prefix=/home/cross/tmp --target=i386-unknown-freebsd4.7
--with-newlib --disable-threads --disable-shared --enable-languages=c,c++,java 

When building for FreeBSD (and presumably any other platform that doesn't
automagically use Newlib as crt) the FreeBSD headers for ctype (and other
OS-specific headers) are used automatically, regardless of whether we're using
Newlib or not.

The bug is located in configure.target, in the block that starts at:
     106 # Set any OS-dependent bits.
     107 # Set the os_include_dir.
     108 # Set c_model, c_compatibility here.
     109 # If atomic ops and/or numeric limits are OS-specific rather than
     110 # CPU-specifc, set those here too.
     111 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
In my particular case, the bug is at:
     137   freebsd*)
     138     os_include_dir="os/bsd/freebsd"
     139     # The FreeBSD ABI is expressed in the major version number only.
     140     abi_baseline_triplet=`echo ${target} | sed 's,\(\.[0-9]*\)*$,,'`
     141     ;;
IMHO, after this table is passed, the --with-newlib option for configure should
be re-examined and the os_include_dir should be overridden accordingly.
Something like this:
if test x"$with_newlib" = "xyes"; then
   os_include_dir="os/newlib"
fi
should do nicely. This does require a two-liner in acinclude.m4:
  AC_ARG_WITH(newlib,
  [  --with-newlib    use newlib])
(in the GLIBCPP_CONFIGURE macro)

Stragely enough, the same change is required in configure.in: while the
GLIBCPP_CONFIGURE macro is called the block starting at 
     114   # Construct crosses by hand, eliminating bits that need ld...
     115   # GLIBCPP_CHECK_COMPILER_FEATURES
     116   # GLIBCPP_CHECK_BUILTIN_MATH_SUPPORT
     117   # GLIBCPP_CHECK_MATH_SUPPORT
overrides some of the settings. (specifically it overrides the os_include_dir
that was set in configure.target). I see no reason to do this twice, but had to
include 
     274 if test x"$with_newlib" = "xyes"; then
     275    os_include_dir="os/newlib"
     276 fi

I'll prepare a patch and send it to gcc-patches.

HTH

rlc


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

* [Bug bootstrap/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
@ 2003-06-12 13:13 ` bangerth@dealii.org
  2003-07-09  5:20 ` dhazeghi at yahoo dot com
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: bangerth@dealii.org @ 2003-06-12 13:13 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171



------- Additional Comments From bangerth@dealii.org  2003-06-12 13:13 -------
Patch can be found here:
    http://gcc.gnu.org/ml/gcc-patches/2003-06/msg01242.html


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

* [Bug bootstrap/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
  2003-06-12 13:13 ` [Bug bootstrap/11171] " bangerth@dealii.org
@ 2003-07-09  5:20 ` dhazeghi at yahoo dot com
  2003-07-20  1:11 ` [Bug libstdc++/11171] " pme at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: dhazeghi at yahoo dot com @ 2003-07-09  5:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


dhazeghi at yahoo dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |build
   Last reconfirmed|0000-00-00 00:00:00         |2003-07-09 05:20:03
               date|                            |


------- Additional Comments From dhazeghi at yahoo dot com  2003-07-09 05:20 -------
Confirmed with mainline (20030705).


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
  2003-06-12 13:13 ` [Bug bootstrap/11171] " bangerth@dealii.org
  2003-07-09  5:20 ` dhazeghi at yahoo dot com
@ 2003-07-20  1:11 ` pme at gcc dot gnu dot org
  2003-08-06  4:01 ` pinskia at physics dot uc dot edu
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pme at gcc dot gnu dot org @ 2003-07-20  1:11 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


pme at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|bootstrap                   |libstdc++


------- Additional Comments From pme at gcc dot gnu dot org  2003-07-20 01:11 -------
Wrong component, changing to v3.


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (2 preceding siblings ...)
  2003-07-20  1:11 ` [Bug libstdc++/11171] " pme at gcc dot gnu dot org
@ 2003-08-06  4:01 ` pinskia at physics dot uc dot edu
  2003-08-06  8:20 ` blytkerchan at users dot sourceforge dot net
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-08-06  4:01 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |WAITING


------- Additional Comments From pinskia at physics dot uc dot edu  2003-08-06 04:01 -------
Why do you want to use NewLib instead of FreeBSD's libc?


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (3 preceding siblings ...)
  2003-08-06  4:01 ` pinskia at physics dot uc dot edu
@ 2003-08-06  8:20 ` blytkerchan at users dot sourceforge dot net
  2003-08-11 19:23 ` dhazeghi at yahoo dot com
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: blytkerchan at users dot sourceforge dot net @ 2003-08-06  8:20 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171



------- Additional Comments From blytkerchan at users dot sourceforge dot net  2003-08-06 08:20 -------
Subject: Re:  Wrong ctype/OS include files when using Newlib

On Wed, Aug 06, 2003 at 04:01:42AM -0000, pinskia at physics dot uc dot edu wrote:
> PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
> 
> http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171
> 
> 
> pinskia at physics dot uc dot edu changed:
> 
>            What    |Removed                     |Added
> ----------------------------------------------------------------------------
>              Status|NEW                         |WAITING
> 
> 
> ------- Additional Comments From pinskia at physics dot uc dot edu  2003-08-06 04:01 -------
> Why do you want to use NewLib instead of FreeBSD's libc?
Again, I don't see how that matters: it's part of the cross-compilation 
experiments I'm running.
Using another libc is not an option for me.

rlc


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (4 preceding siblings ...)
  2003-08-06  8:20 ` blytkerchan at users dot sourceforge dot net
@ 2003-08-11 19:23 ` dhazeghi at yahoo dot com
  2003-08-23  0:26 ` dhazeghi at yahoo dot com
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: dhazeghi at yahoo dot com @ 2003-08-11 19:23 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


dhazeghi at yahoo dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
   Last reconfirmed|2003-07-09 05:20:03         |2003-08-11 19:23:49
               date|                            |


------- Additional Comments From dhazeghi at yahoo dot com  2003-08-11 19:23 -------
Correct. Newlib makes cross-compilation more or less painless... 
Shouldn't be in waiting.


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (5 preceding siblings ...)
  2003-08-11 19:23 ` dhazeghi at yahoo dot com
@ 2003-08-23  0:26 ` dhazeghi at yahoo dot com
  2003-10-30  7:07 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: dhazeghi at yahoo dot com @ 2003-08-23  0:26 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


dhazeghi at yahoo dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  GCC build triplet|i686-pc-linux-gnu           |
   GCC host triplet|i686-pc-linux-gnu           |
   Target Milestone|3.4                         |---


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (6 preceding siblings ...)
  2003-08-23  0:26 ` dhazeghi at yahoo dot com
@ 2003-10-30  7:07 ` pinskia at gcc dot gnu dot org
  2003-12-19  9:50 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-30  7:07 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
   Target Milestone|---                         |3.4


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (7 preceding siblings ...)
  2003-10-30  7:07 ` pinskia at gcc dot gnu dot org
@ 2003-12-19  9:50 ` pinskia at gcc dot gnu dot org
  2004-03-18 20:49 ` bkoz at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-19  9:50 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.0                       |---


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (8 preceding siblings ...)
  2003-12-19  9:50 ` pinskia at gcc dot gnu dot org
@ 2004-03-18 20:49 ` bkoz at gcc dot gnu dot org
  2004-03-22 16:07 ` ronald at landheer dot com
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-03-18 20:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-03-18 20:49 -------

What's the status with this bug? Specifically, with the 3.4.0 code base.

-benjamin

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (9 preceding siblings ...)
  2004-03-18 20:49 ` bkoz at gcc dot gnu dot org
@ 2004-03-22 16:07 ` ronald at landheer dot com
  2004-05-26  4:05 ` bkoz at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ronald at landheer dot com @ 2004-03-22 16:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ronald at landheer dot com  2004-03-22 16:07 -------
Subject: Re:  Wrong ctype/OS include files when using
 Newlib

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

bkoz at gcc dot gnu dot org wrote:

|------- Additional Comments From bkoz at gcc dot gnu dot org
2004-03-18 20:49 -------
|
|What's the status with this bug? Specifically, with the 3.4.0 code base.
|
|-benjamin
|
|  
|
I don't know - haven't tested it (yet).
I should note that I am no longer "on the case" as I quit from the job
for which I was making a cross-compiler at the time. The code I wrote
back then is non-open, so I don't have it. To test what the status of
this bug is, I would either have to re-write the code I've written (to
port Newlib to FreeBSD) or find some other way to reproduce the symptoms.

I'll send a message to my former chef. It should be rather trivial to
reproduce the bug if it still exists with what I left behind.

rlc


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFAXwxvU1nODpimgXsRAmBuAKCk1bHa4P3QuaHHr1q4uogJgqJk6QCgkqJV
TB0QsZZVim5bYMrj5jrkR+4=
=txPK
-----END PGP SIGNATURE-----




-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (10 preceding siblings ...)
  2004-03-22 16:07 ` ronald at landheer dot com
@ 2004-05-26  4:05 ` bkoz at gcc dot gnu dot org
  2004-05-26  4:22 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-05-26  4:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-05-25 05:04 -------

Phil fixed this for 3.4.0 and mainline with the autoconf/automake update. 

In theory, that patch could be backported to 3.3, although I'm not especially
eager to do it. 

The patch attached could be used, minus the configure.target bits.

-benjamin

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |3.4.0 3.5.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (11 preceding siblings ...)
  2004-05-26  4:05 ` bkoz at gcc dot gnu dot org
@ 2004-05-26  4:22 ` cvs-commit at gcc dot gnu dot org
  2004-05-26 13:53 ` bkoz at gcc dot gnu dot org
  2004-05-31 16:55 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-05-26  4:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-05-25 06:05 -------
Subject: Bug 11171

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	bkoz@gcc.gnu.org	2004-05-25 06:05:30

Modified files:
	libstdc++-v3   : ChangeLog acinclude.m4 aclocal.m4 configure 
	                 configure.in 

Log message:
	2004-05-24  Ronald Landheer-Cieslak  <ronald@landheer.com>
	
	PR libstdc++/11171
	* acinclude.m4: Deal with --with-newlib.
	* aclocal.m4: Regenerate.
	* configure.in: Set os_include_dir correctly when --with-newlib.
	* configure: Regenerate.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.1464.2.184&r2=1.1464.2.185
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/acinclude.m4.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.223.2.10&r2=1.223.2.11
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/aclocal.m4.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.235.2.12&r2=1.235.2.13
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.286.2.21&r2=1.286.2.22
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.in.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.110.2.12&r2=1.110.2.13



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (12 preceding siblings ...)
  2004-05-26  4:22 ` cvs-commit at gcc dot gnu dot org
@ 2004-05-26 13:53 ` bkoz at gcc dot gnu dot org
  2004-05-31 16:55 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-05-26 13:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-05-25 15:50 -------

Fixed.

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


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

* [Bug libstdc++/11171] Wrong ctype/OS include files when using Newlib
  2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
                   ` (13 preceding siblings ...)
  2004-05-26 13:53 ` bkoz at gcc dot gnu dot org
@ 2004-05-31 16:55 ` pinskia at gcc dot gnu dot org
  14 siblings, 0 replies; 16+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-31 16:55 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |3.3.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11171


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

end of thread, other threads:[~2004-05-30 15:13 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-06-12 12:26 [Bug bootstrap/11171] New: Wrong ctype/OS include files when using Newlib ronald@landheer.com
2003-06-12 13:13 ` [Bug bootstrap/11171] " bangerth@dealii.org
2003-07-09  5:20 ` dhazeghi at yahoo dot com
2003-07-20  1:11 ` [Bug libstdc++/11171] " pme at gcc dot gnu dot org
2003-08-06  4:01 ` pinskia at physics dot uc dot edu
2003-08-06  8:20 ` blytkerchan at users dot sourceforge dot net
2003-08-11 19:23 ` dhazeghi at yahoo dot com
2003-08-23  0:26 ` dhazeghi at yahoo dot com
2003-10-30  7:07 ` pinskia at gcc dot gnu dot org
2003-12-19  9:50 ` pinskia at gcc dot gnu dot org
2004-03-18 20:49 ` bkoz at gcc dot gnu dot org
2004-03-22 16:07 ` ronald at landheer dot com
2004-05-26  4:05 ` bkoz at gcc dot gnu dot org
2004-05-26  4:22 ` cvs-commit at gcc dot gnu dot org
2004-05-26 13:53 ` bkoz at gcc dot gnu dot org
2004-05-31 16:55 ` pinskia at gcc dot gnu dot org

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).