* [Bug libfortran/15266] [tree-ssa] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
@ 2004-05-03 15:50 ` pinskia at gcc dot gnu dot org
2004-05-03 16:11 ` ro at techfak dot uni-bielefeld dot de
` (24 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-03 15:50 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-03 15:50 -------
Man I hate non-C99 complaint C libraries. Note the function is there for C99 stubs and the front-end
emits to those C99 functions.
Maybe there should be a better way in libgfortran to check for these functions.
Someone should complain to these companies for not updating their OS's to C99 as it has been out for
almost 5 years now.
--
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|UNCONFIRMED |NEW
Component|fortran |libfortran
Ever Confirmed| |1
Keywords| |build
Last reconfirmed|0000-00-00 00:00:00 |2004-05-03 15:50:37
date| |
Target Milestone|--- |tree-ssa
Version|unknown |tree-ssa
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] [tree-ssa] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
2004-05-03 15:50 ` [Bug libfortran/15266] " pinskia at gcc dot gnu dot org
@ 2004-05-03 16:11 ` ro at techfak dot uni-bielefeld dot de
2004-05-18 11:45 ` [Bug libfortran/15266] [gfortran] " pinskia at gcc dot gnu dot org
` (23 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2004-05-03 16:11 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From ro at techfak dot uni-bielefeld dot de 2004-05-03 16:11 -------
Subject: Re: [tree-ssa] libgfortran doesn't compile on IRIX 5.3
pinskia at gcc dot gnu dot org writes:
> Man I hate non-C99 complaint C libraries. Note the function is there for C99 stubs and the front-end
> emits to those C99 functions.
But if libgfortran relies on a C99 libm, then why does it reimplement all
those complex functions at all? They should already be present. And if it
needs them to be present under any circumstances, it better use some
internal names to avoid clashes like the one described here.
> Maybe there should be a better way in libgfortran to check for these functions.
As I said: if they are present already (and with the correct signature!),
just use them instead of reimplementing them.
> Someone should complain to these companies for not updating their OS's to C99 as it has been out for
> almost 5 years now.
Which doesn't hold for old releases like IRIX 5 or Tru64 UNIX V4.0. But
even current O/S and compiler releases just now start supporting C99.
GCC has tried to accomodate non-bleeding-edge O/Ses for a long time, and I
don't see a good reason to stop this now.
Rainer
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] [gfortran] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
2004-05-03 15:50 ` [Bug libfortran/15266] " pinskia at gcc dot gnu dot org
2004-05-03 16:11 ` ro at techfak dot uni-bielefeld dot de
@ 2004-05-18 11:45 ` pinskia at gcc dot gnu dot org
2004-05-18 23:18 ` ro at techfak dot uni-bielefeld dot de
` (22 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-05-18 11:45 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-17 19:32 -------
Yes and IIRC when IRIX (if ever) gets C99 most of everyone's code gets broken if they used csqrtf.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] [gfortran] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (2 preceding siblings ...)
2004-05-18 11:45 ` [Bug libfortran/15266] [gfortran] " pinskia at gcc dot gnu dot org
@ 2004-05-18 23:18 ` ro at techfak dot uni-bielefeld dot de
2004-08-11 21:56 ` [Bug libfortran/15266] " pinskia at gcc dot gnu dot org
` (21 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2004-05-18 23:18 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From ro at techfak dot uni-bielefeld dot de 2004-05-18 13:06 -------
Subject: Re: [gfortran] libgfortran doesn't compile on IRIX 5.3
pinskia at gcc dot gnu dot org writes:
> Yes and IIRC when IRIX (if ever) gets C99 most of everyone's code gets broken if they used csqrtf.
This is about cabs and friends on IRIX, but even so, not at all: IRIX
6.5.18 and up have C99 support, which is done like this:
<internal/math_core.h> (included from <math.h>) has
#if !defined(__c99)
struct __cabs_s { double a,b; };
extern double cabs(struct __cabs_s);
[...]
#endif
and <complex.h> has
/* C99: 7.3.8.1 */
/* c89 also had functions cabs, cabsf and cabsl with the following
* prototypes.
*
* double cabs (struct { double a,b; } z);
* float cabsf (struct { float a,b; } z);
* long double cabsl (struct { long double a,b; } z);
*
* As the passing of structs by value is different from passing
* complex by value for the float and long double cases, the following
* changes are being done to the C99 functions so as to maintain
* backwards compatibility.
*
* For the C99 functions we provide static definitions of these,
* which in turn call the corresponding library functions with a __c99_
* prefix.
*
* There are two drawbacks of this approach
*
* 1. As each compilation will get its own copy of these functions,
* any program which relies on the address of these functions being
* unique will fail.
*
* 2. If the user rolls his own version of these functions, they will
* never get invoked, and to get around this problem, the user
* should be able to disable the generation of these static functions.
* This is achieved by adding -D_C99_CABS_USER_DEFINED to the commandline.
*/
extern double __c99_cabs (double complex);
extern float __c99_cabsf (float complex);
extern long double __c99_cabsl (long double complex);
#pragma optional __c99_cabs
#pragma optional __c99_cabsf
#pragma optional __c99_cabsl
#ifdef _C99_CABS_USER_DEFINED
extern double cabs (double complex);
extern float cabsf (float complex);
extern long double cabsl (long double complex);
#else
static inline double cabs (double complex z) {return __c99_cabs(z); }
static inline float cabsf (float complex z) {return __c99_cabsf(z);}
static inline long double cabsl (long double complex z) {return __c99_cabsl(z);}
#endif /* _C99_CABS_USER_DEFINED */
These vendors usually know (and care) about backwards source and binary
compatibility.
Rainer
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (3 preceding siblings ...)
2004-05-18 23:18 ` ro at techfak dot uni-bielefeld dot de
@ 2004-08-11 21:56 ` pinskia at gcc dot gnu dot org
2004-12-27 15:09 ` pinskia at gcc dot gnu dot org
` (20 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-08-11 21:56 UTC (permalink / raw)
To: gcc-bugs
--
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |16991
nThis| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (4 preceding siblings ...)
2004-08-11 21:56 ` [Bug libfortran/15266] " pinskia at gcc dot gnu dot org
@ 2004-12-27 15:09 ` pinskia at gcc dot gnu dot org
2005-01-06 14:40 ` tobi at gcc dot gnu dot org
` (19 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-12-27 15:09 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-27 15:09 -------
What is the current status about this bug, where does libgfortran fail on IRIX 5.3 now?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (5 preceding siblings ...)
2004-12-27 15:09 ` pinskia at gcc dot gnu dot org
@ 2005-01-06 14:40 ` tobi at gcc dot gnu dot org
2005-01-07 0:16 ` coudert at clipper dot ens dot fr
` (18 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: tobi at gcc dot gnu dot org @ 2005-01-06 14:40 UTC (permalink / raw)
To: gcc-bugs
--
What |Removed |Added
----------------------------------------------------------------------------
OtherBugsDependingO| |19292
nThis| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (6 preceding siblings ...)
2005-01-06 14:40 ` tobi at gcc dot gnu dot org
@ 2005-01-07 0:16 ` coudert at clipper dot ens dot fr
2005-01-09 15:02 ` coudert at clipper dot ens dot fr
` (17 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: coudert at clipper dot ens dot fr @ 2005-01-07 0:16 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From coudert at clipper dot ens dot fr 2005-01-07 00:16 -------
As of today, libgfortran compilation fails on mips-sgi-irix6.5 with:
../../../../gcc/libgfortran/generated/exp_c8.c:29: error: conflicting types for
'cabs'
/var/tmp/gfortran-20050106/ibin/gcc/include/math.h:676: error: previous
declaration of 'cabs' was here
gmake[4]: *** [exp_c8.lo] Error 1
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |coudert at clipper dot ens
| |dot fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (7 preceding siblings ...)
2005-01-07 0:16 ` coudert at clipper dot ens dot fr
@ 2005-01-09 15:02 ` coudert at clipper dot ens dot fr
2005-01-09 15:07 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
` (16 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: coudert at clipper dot ens dot fr @ 2005-01-09 15:02 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From coudert at clipper dot ens dot fr 2005-01-09 15:02 -------
More detail on this one: it fails to build mips-sgi-irix6.5/32/libgfortran but
compilation of mips-sgi-irix6.5/64/libgfortran works fine. The second case, the
output of the step building exp_c8.c is:
/bin/sh ./libtool --mode=compile /var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=64 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c -o _exp_c8.lo `test -f
'generated/_exp_c8.f90' || echo '../../../../gcc/libgfortran/'`generated/_exp_c8.f90
/var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=64 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c
../../../../gcc/libgfortran/generated/_exp_c8.f90 -DPIC -o .libs/_exp_c8.o
/var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=64 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c
../../../../gcc/libgfortran/generated/_exp_c8.f90 -o _exp_c8.o >/dev/null 2>&1
while for 32/libgfortran, it fails with:
/bin/sh ./libtool --mode=compile /var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c -o _exp_c8.lo `test -f
'generated/_exp_c8.f90' || echo '../../../../gcc/libgfortran/'`generated/_exp_c8.f90
/var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c
../../../../gcc/libgfortran/generated/_exp_c8.f90 -DPIC -o .libs/_exp_c8.o
/var/tmp/gfortran-20050109/ibin/gcc/gfortran
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32 -g -O2
-Wall -fno-repack-arrays -fno-underscoring -c
../../../../gcc/libgfortran/generated/_exp_c8.f90 -o _exp_c8.o >/dev/null 2>&1
/bin/sh ./libtool --mode=compile /var/tmp/gfortran-20050109/ibin/gcc/xgcc
-B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32
-DHAVE_CONFIG_H -I. -I../../../../gcc/libgfortran -I.
-iquote../../../../gcc/libgfortran/io -O2 -g -O2 -std=gnu99 -O2 -g -O2 -Wall
-Wall -c -o exp_c8.lo `test -f 'generated/exp_c8.c' || echo
'../../../../gcc/libgfortran/'`generated/exp_c8.c
/var/tmp/gfortran-20050109/ibin/gcc/xgcc -B/var/tmp/gfortran-20050109/ibin/gcc/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/bin/
-B/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/lib/ -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/include -isystem
/var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32
-DHAVE_CONFIG_H -I. -I../../../../gcc/libgfortran -I.
-iquote../../../../gcc/libgfortran/io -O2 -g -O2 -std=gnu99 -O2 -g -O2 -Wall
-Wall -c ../../../../gcc/libgfortran/generated/exp_c8.c -DPIC -o .libs/exp_c8.o
../../../../gcc/libgfortran/generated/exp_c8.c:29: error: conflicting types for
'cabs'
/var/tmp/gfortran-20050109/ibin/gcc/include/math.h:676: error: previous
declaration of 'cabs' was here
The difference of these two I can't explain, may be something deep inside
configure process. I don't know how to debug further than that. I can provide
the complete build directory for analysis if needed.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (8 preceding siblings ...)
2005-01-09 15:02 ` coudert at clipper dot ens dot fr
@ 2005-01-09 15:07 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
2005-02-20 21:24 ` pinskia at gcc dot gnu dot org
` (15 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: Tobias dot Schlueter at physik dot uni-muenchen dot de @ 2005-01-09 15:07 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From Tobias dot Schlueter at physik dot uni-muenchen dot de 2005-01-09 15:07 -------
Subject: Re: libgfortran doesn't compile on IRIX 5.3
coudert at clipper dot ens dot fr wrote:
> /var/tmp/gfortran-20050109/irun/mips-sgi-irix6.5/sys-include -mabi=32
> -DHAVE_CONFIG_H -I. -I../../../../gcc/libgfortran -I.
> -iquote../../../../gcc/libgfortran/io -O2 -g -O2 -std=gnu99 -O2 -g -O2 -Wall
> -Wall -c ../../../../gcc/libgfortran/generated/exp_c8.c -DPIC -o .libs/exp_c8.o
> ../../../../gcc/libgfortran/generated/exp_c8.c:29: error: conflicting types for
> 'cabs'
> /var/tmp/gfortran-20050109/ibin/gcc/include/math.h:676: error: previous
> declaration of 'cabs' was here
>
> The difference of these two I can't explain, may be something deep inside
> configure process. I don't know how to debug further than that. I can provide
> the complete build directory for analysis if needed.
Maybe the preprocessed files will be helpful?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (9 preceding siblings ...)
2005-01-09 15:07 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2005-02-20 21:24 ` pinskia at gcc dot gnu dot org
2005-04-16 22:33 ` pinskia at gcc dot gnu dot org
` (14 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-20 21:24 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-20 15:21 -------
*** Bug 20105 has been marked as a duplicate of this bug. ***
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeffcorbets at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (10 preceding siblings ...)
2005-02-20 21:24 ` pinskia at gcc dot gnu dot org
@ 2005-04-16 22:33 ` pinskia at gcc dot gnu dot org
2005-06-09 18:53 ` ro at techfak dot uni-bielefeld dot de
` (13 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-16 22:33 UTC (permalink / raw)
To: gcc-bugs
--
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.0.0 |4.0.1
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (11 preceding siblings ...)
2005-04-16 22:33 ` pinskia at gcc dot gnu dot org
@ 2005-06-09 18:53 ` ro at techfak dot uni-bielefeld dot de
2005-06-13 16:10 ` fxcoudert at gcc dot gnu dot org
` (12 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2005-06-09 18:53 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From ro at techfak dot uni-bielefeld dot de 2005-06-09 18:53 -------
Subject: Re: libgfortran doesn't compile on IRIX 5.3
Patch submitted:
http://gcc.gnu.org/ml/gcc-patches/2005-06/msg00902.html
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (12 preceding siblings ...)
2005-06-09 18:53 ` ro at techfak dot uni-bielefeld dot de
@ 2005-06-13 16:10 ` fxcoudert at gcc dot gnu dot org
2005-06-15 0:00 ` cvs-commit at gcc dot gnu dot org
` (11 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-06-13 16:10 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-06-13 16:09 -------
Added patch keyword and URL. Patch received the OK on ml.
--
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://gcc.gnu.org/ml/gcc-
| |patches/2005-
| |06/msg00902.html
Keywords| |patch
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (13 preceding siblings ...)
2005-06-13 16:10 ` fxcoudert at gcc dot gnu dot org
@ 2005-06-15 0:00 ` cvs-commit at gcc dot gnu dot org
2005-06-15 0:01 ` ro at gcc dot gnu dot org
` (10 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-06-15 0:00 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-14 23:59 -------
Subject: Bug 15266
CVSROOT: /cvs/gcc
Module name: gcc
Changes by: ro@gcc.gnu.org 2005-06-14 23:59:48
Modified files:
fixincludes : ChangeLog inclhack.def fixincl.x
fixincludes/tests/base: math.h
Log message:
PR libfortran/15266
* inclhack.def (broken_cabs): Mention IRIX 5/6 problem.
Use double quotes in select so \t matches tabs.
Add IRIX testcase.
* fixincl.x: Regenerate.
* tests/base/math.h [BROKEN_CABS_CHECK]: Adapt for new testcase.
Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/ChangeLog.diff?cvsroot=gcc&r1=1.43&r2=1.44
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/inclhack.def.diff?cvsroot=gcc&r1=1.21&r2=1.22
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/fixincl.x.diff?cvsroot=gcc&r1=1.21&r2=1.22
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/tests/base/math.h.diff?cvsroot=gcc&r1=1.2&r2=1.3
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (14 preceding siblings ...)
2005-06-15 0:00 ` cvs-commit at gcc dot gnu dot org
@ 2005-06-15 0:01 ` ro at gcc dot gnu dot org
2005-06-15 0:02 ` ro at gcc dot gnu dot org
` (9 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at gcc dot gnu dot org @ 2005-06-15 0:01 UTC (permalink / raw)
To: gcc-bugs
--
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|unassigned at gcc dot gnu |ro at gcc dot gnu dot org
|dot org |
Status|NEW |ASSIGNED
Last reconfirmed|2004-05-03 15:50:37 |2005-06-15 00:01:29
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (15 preceding siblings ...)
2005-06-15 0:01 ` ro at gcc dot gnu dot org
@ 2005-06-15 0:02 ` ro at gcc dot gnu dot org
2005-06-15 8:22 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
` (8 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at gcc dot gnu dot org @ 2005-06-15 0:02 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From ro at gcc dot gnu dot org 2005-06-15 00:02 -------
Fixed for 4.1.0, patch pending for 4.0.2, 3.4.5.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (16 preceding siblings ...)
2005-06-15 0:02 ` ro at gcc dot gnu dot org
@ 2005-06-15 8:22 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
2005-06-15 9:30 ` ro at techfak dot uni-bielefeld dot de
` (7 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: Tobias dot Schlueter at physik dot uni-muenchen dot de @ 2005-06-15 8:22 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From Tobias dot Schlueter at physik dot uni-muenchen dot de 2005-06-15 08:22 -------
Subject: Re: libgfortran doesn't compile on IRIX 5.3
ro at gcc dot gnu dot org wrote:
> ------- Additional Comments From ro at gcc dot gnu dot org 2005-06-15 00:02 -------
> Fixed for 4.1.0, patch pending for 4.0.2, 3.4.5.
>
There's no libgfortran in 3.4.5 :-)
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (17 preceding siblings ...)
2005-06-15 8:22 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2005-06-15 9:30 ` ro at techfak dot uni-bielefeld dot de
2005-06-15 9:37 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
` (6 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: ro at techfak dot uni-bielefeld dot de @ 2005-06-15 9:30 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From ro at techfak dot uni-bielefeld dot de 2005-06-15 09:30 -------
Subject: Re: libgfortran doesn't compile on IRIX 5.3
Tobias dot Schlueter at physik dot uni-muenchen dot de writes:
> ro at gcc dot gnu dot org wrote:
> > ------- Additional Comments From ro at gcc dot gnu dot org 2005-06-15 00:02 -------
> > Fixed for 4.1.0, patch pending for 4.0.2, 3.4.5.
> >
> There's no libgfortran in 3.4.5 :-)
True enough, but the fix is for a generic fixincludes bugs which also
affects the 3.4 branch. Bruce approved it for all active branches, which
includes 3.4.5.
Rainer
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (18 preceding siblings ...)
2005-06-15 9:30 ` ro at techfak dot uni-bielefeld dot de
@ 2005-06-15 9:37 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
2005-07-08 1:37 ` mmitchel at gcc dot gnu dot org
` (5 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: Tobias dot Schlueter at physik dot uni-muenchen dot de @ 2005-06-15 9:37 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From Tobias dot Schlueter at physik dot uni-muenchen dot de 2005-06-15 09:37 -------
Subject: Re: libgfortran doesn't compile on IRIX 5.3
Quoting ro at techfak dot uni-bielefeld dot de <gcc-bugzilla@gcc.gnu.org>:
> > > Fixed for 4.1.0, patch pending for 4.0.2, 3.4.5.
> > >
> > There's no libgfortran in 3.4.5 :-)
>
> True enough, but the fix is for a generic fixincludes bugs which also
> affects the 3.4 branch. Bruce approved it for all active branches, which
> includes 3.4.5.
Well, that makes sense :-)
- Tobi
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (19 preceding siblings ...)
2005-06-15 9:37 ` Tobias dot Schlueter at physik dot uni-muenchen dot de
@ 2005-07-08 1:37 ` mmitchel at gcc dot gnu dot org
2005-07-19 11:14 ` fxcoudert at gcc dot gnu dot org
` (4 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-07-08 1:37 UTC (permalink / raw)
To: gcc-bugs
--
What |Removed |Added
----------------------------------------------------------------------------
Target Milestone|4.0.1 |4.0.2
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (20 preceding siblings ...)
2005-07-08 1:37 ` mmitchel at gcc dot gnu dot org
@ 2005-07-19 11:14 ` fxcoudert at gcc dot gnu dot org
2005-08-19 14:55 ` cvs-commit at gcc dot gnu dot org
` (3 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-07-19 11:14 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-07-19 10:32 -------
Rainer, the 4.0 branch is open again, can you commit your patch?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (21 preceding siblings ...)
2005-07-19 11:14 ` fxcoudert at gcc dot gnu dot org
@ 2005-08-19 14:55 ` cvs-commit at gcc dot gnu dot org
2005-09-05 10:41 ` fxcoudert at gcc dot gnu dot org
` (2 subsequent siblings)
25 siblings, 0 replies; 27+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-08-19 14:55 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-08-19 14:51 -------
Subject: Bug 15266
CVSROOT: /cvs/gcc
Module name: gcc
Branch: gcc-4_0-branch
Changes by: ro@gcc.gnu.org 2005-08-19 14:50:27
Modified files:
fixincludes : ChangeLog inclhack.def fixincl.x
fixincludes/tests/base: math.h
Log message:
PR libfortran/15266
* inclhack.def (broken_cabs): Mention IRIX 5/6 problem.
Use double quotes in select so \t matches tabs.
Add IRIX testcase.
* fixincl.x: Regenerate.
* tests/base/math.h [BROKEN_CABS_CHECK]: Adapt for new testcase.
Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.32.2.7&r2=1.32.2.8
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/inclhack.def.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.16.14.4&r2=1.16.14.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/fixincl.x.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.16.14.4&r2=1.16.14.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/fixincludes/tests/base/math.h.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.2&r2=1.2.18.1
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug libfortran/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (22 preceding siblings ...)
2005-08-19 14:55 ` cvs-commit at gcc dot gnu dot org
@ 2005-09-05 10:41 ` fxcoudert at gcc dot gnu dot org
2005-09-05 13:53 ` [Bug target/15266] " pinskia at gcc dot gnu dot org
2005-09-27 18:21 ` pinskia at gcc dot gnu dot org
25 siblings, 0 replies; 27+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-09-05 10:41 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From fxcoudert at gcc dot gnu dot org 2005-09-05 10:41 -------
(In reply to comment #13)
> Fixed for 4.1.0, patch pending for 4.0.2, 3.4.5.
Now fixed for 4.0 branch, commit for 3.4.5 still pending. This does not concern
libgfortran any more, but there's no fixincludes component, so I don't know what
to do...
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug target/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (23 preceding siblings ...)
2005-09-05 10:41 ` fxcoudert at gcc dot gnu dot org
@ 2005-09-05 13:53 ` pinskia at gcc dot gnu dot org
2005-09-27 18:21 ` pinskia at gcc dot gnu dot org
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-05 13:53 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-05 13:53 -------
(In reply to comment #19)
> Now fixed for 4.0 branch, commit for 3.4.5 still pending. This does not concern
> libgfortran any more, but there's no fixincludes component, so I don't know what
> to do...
It should be put into the target component since almost always fixincludes are target dependent.
--
What |Removed |Added
----------------------------------------------------------------------------
Component|libfortran |target
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread
* [Bug target/15266] libgfortran doesn't compile on IRIX 5.3
2004-05-03 15:42 [Bug fortran/15266] New: [tree-ssa] libgfortran doesn't compile on IRIX 5.3 gcc-bugzilla at gcc dot gnu dot org
` (24 preceding siblings ...)
2005-09-05 13:53 ` [Bug target/15266] " pinskia at gcc dot gnu dot org
@ 2005-09-27 18:21 ` pinskia at gcc dot gnu dot org
25 siblings, 0 replies; 27+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-27 18:21 UTC (permalink / raw)
To: gcc-bugs
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-09-27 17:09 -------
Fixed.
--
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15266
^ permalink raw reply [flat|nested] 27+ messages in thread