public inbox for gsl-discuss@sourceware.org
 help / color / mirror / Atom feed
* Problems compiling tests with gcc 3.1
  2002-12-31  9:55 Problems compiling tests with gcc 3.1 Jari Häkkinen
@ 2002-05-29  3:46 ` Jari Häkkinen
  2002-12-31  9:55 ` Achim Gaedke
  2002-12-31  9:55 ` Brian Gough
  2 siblings, 0 replies; 12+ messages in thread
From: Jari Häkkinen @ 2002-05-29  3:46 UTC (permalink / raw)
  To: gsl-discuss

Hi.

I have problems running (compiling) some of the test programs with gcc 
version 3.1. The test programs compile using gcc 2.95.

I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the 
projects works alright. When running 'make check' all directories, 
except vector and matrix, compiles and passes all tests. In the matrix 
and vector directories, gcc gives the following output:

gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
In file included from test.c:61,
                  from test_static.c:6:
test_complex_source.c: In function `test_complex_float_trap':
test_complex_source.c:258: Internal compiler error in subst, at 
combine.c:3546
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
make[2]: *** [test_static.o] Error 1


I have not submitted a bug-report. Is this a known problem?

Jari


-- 
Jari Häkkinen, PhD
Complex Systems Division                        mailto:jari@thep.lu.se
Department of Theoretical Physics               phone: +46 (0)46 2220667
Lund University                                 fax:   +46 (0)46 2229686
Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se


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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 ` Brian Gough
@ 2002-05-30  4:59   ` Brian Gough
  2002-12-31  9:55   ` John Ketchum
  1 sibling, 0 replies; 12+ messages in thread
From: Brian Gough @ 2002-05-30  4:59 UTC (permalink / raw)
  To: Jari Häkkinen; +Cc: gsl-discuss

Jari Häkkinen writes:
 > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
 > In file included from test.c:61,
 >                   from test_static.c:6:
 > test_complex_source.c: In function `test_complex_float_trap':
 > test_complex_source.c:258: Internal compiler error in subst, at 
 > combine.c:3546
 > Please submit a full bug report,
 > with preprocessed source if appropriate.
 > See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
 > make[2]: *** [test_static.o] Error 1
 > 
 > 
 > I have not submitted a bug-report. Is this a known problem?

I have not seen that problem before -- it needs to be reported to the
gcc maintainers if it is not fixed in their latest release.

regards
Brian Gough

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55   ` John Ketchum
@ 2002-05-31 10:17     ` John Ketchum
  0 siblings, 0 replies; 12+ messages in thread
From: John Ketchum @ 2002-05-31 10:17 UTC (permalink / raw)
  To: Brian Gough, Jari Häkkinen; +Cc: gsl-discuss

I have had the same problem when building with gcc 3.1.  I managed to run 
the gsl test suite with gcc 3.1 by compiling the test.c and test_static.c 
routines in gsl-1.1.1/vector and gsl-1.1.1/matrix with the default redhat 
version of gcc (2.96-98), then running make check, configured to use gcc 
3.1.  All the checks ran successfully.
At 07:12 PM 5/29/2002 +0100, Brian Gough wrote:
>Jari Häkkinen writes:
>  > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>  > In file included from test.c:61,
>  >                   from test_static.c:6:
>  > test_complex_source.c: In function `test_complex_float_trap':
>  > test_complex_source.c:258: Internal compiler error in subst, at
>  > combine.c:3546
>  > Please submit a full bug report,
>  > with preprocessed source if appropriate.
>  > See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>  > make[2]: *** [test_static.o] Error 1
>  >
>  >
>  > I have not submitted a bug-report. Is this a known problem?
>
>I have not seen that problem before -- it needs to be reported to the
>gcc maintainers if it is not fixed in their latest release.
>
>regards
>Brian Gough

John Ketchum
Qualcomm Inc.
9 Damonmill Square Suite 2A
Concord, MA 01742
Office: 60915
Direct: 781-276-0915
Fax: 781-276-0901
Mobile: 617-312-7023

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 ` Achim Gaedke
@ 2002-05-31 10:45   ` Achim Gaedke
  2002-12-31  9:55   ` Jari Häkkinen
  1 sibling, 0 replies; 12+ messages in thread
From: Achim Gaedke @ 2002-05-31 10:45 UTC (permalink / raw)
  To: Jari Häkkinen; +Cc: gsl-discuss

Hi Jari!

I stated, that I was successful with gcc-3.1 and redhat7.3, but that was due to

CFLAGS="-O0 -g"

no optimization. With the default CFLAGS="-O2 -g" I had the same error.

/opt/gcc-3.1/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test.c
In file included from test.c:61:
test_complex_source.c: In function `test_complex_float_trap':
test_complex_source.c:258: Internal compiler error in subst, at combine.c:3546

This is an abort statement in gcc-3.1/gcc/combine.c .

I DO agree with Brian, that this error MUST be reported to gcc. If you need help
with the bug report, please ask.

Yours, Achim

Jari Häkkinen schrieb:
> 
> Hi.
> 
> I have problems running (compiling) some of the test programs with gcc
> version 3.1. The test programs compile using gcc 2.95.
> 
> I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the
> projects works alright. When running 'make check' all directories,
> except vector and matrix, compiles and passes all tests. In the matrix
> and vector directories, gcc gives the following output:
> 
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
> In file included from test.c:61,
>                   from test_static.c:6:
> test_complex_source.c: In function `test_complex_float_trap':
> test_complex_source.c:258: Internal compiler error in subst, at
> combine.c:3546
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
> make[2]: *** [test_static.o] Error 1
> 
> I have not submitted a bug-report. Is this a known problem?
> 
> Jari
> 
> --
> Jari Häkkinen, PhD
> Complex Systems Division                        mailto:jari@thep.lu.se
> Department of Theoretical Physics               phone: +46 (0)46 2220667
> Lund University                                 fax:   +46 (0)46 2229686
> Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55   ` Jari Häkkinen
@ 2002-05-31 12:45     ` Jari Häkkinen
  0 siblings, 0 replies; 12+ messages in thread
From: Jari Häkkinen @ 2002-05-31 12:45 UTC (permalink / raw)
  To: Achim Gaedke; +Cc: gsl-discuss

Thanks for testing. I'll submit a bug report to the gcc development team 
during the weekend.

Jari


Achim Gaedke wrote:

> Hi Jari!
> 
> I stated, that I was successful with gcc-3.1 and redhat7.3, but that was due to
> 
> CFLAGS="-O0 -g"
> 
> no optimization. With the default CFLAGS="-O2 -g" I had the same error.
> 
> /opt/gcc-3.1/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test.c
> In file included from test.c:61:
> test_complex_source.c: In function `test_complex_float_trap':
> test_complex_source.c:258: Internal compiler error in subst, at combine.c:3546
> 
> This is an abort statement in gcc-3.1/gcc/combine.c .
> 
> I DO agree with Brian, that this error MUST be reported to gcc. If you need help
> with the bug report, please ask.
> 
> Yours, Achim
> 
> Jari Häkkinen schrieb:
> 
>>Hi.
>>
>>I have problems running (compiling) some of the test programs with gcc
>>version 3.1. The test programs compile using gcc 2.95.
>>
>>I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the
>>projects works alright. When running 'make check' all directories,
>>except vector and matrix, compiles and passes all tests. In the matrix
>>and vector directories, gcc gives the following output:
>>
>>gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>>In file included from test.c:61,
>>                  from test_static.c:6:
>>test_complex_source.c: In function `test_complex_float_trap':
>>test_complex_source.c:258: Internal compiler error in subst, at
>>combine.c:3546
>>Please submit a full bug report,
>>with preprocessed source if appropriate.
>>See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>>make[2]: *** [test_static.o] Error 1
>>
>>I have not submitted a bug-report. Is this a known problem?
>>
>>Jari
>>
>>--
>>Jari Häkkinen, PhD
>>Complex Systems Division                        mailto:jari@thep.lu.se
>>Department of Theoretical Physics               phone: +46 (0)46 2220667
>>Lund University                                 fax:   +46 (0)46 2229686
>>Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se
>>


-- 
Jari Häkkinen                                  tel: +46 (0)40 320697
mailto:jari@chiralcomp.com                     http://www.chiralcomp.com

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 Problems compiling tests with gcc 3.1 Jari Häkkinen
  2002-05-29  3:46 ` Jari Häkkinen
  2002-12-31  9:55 ` Achim Gaedke
@ 2002-12-31  9:55 ` Brian Gough
  2002-05-30  4:59   ` Brian Gough
  2002-12-31  9:55   ` John Ketchum
  2 siblings, 2 replies; 12+ messages in thread
From: Brian Gough @ 2002-12-31  9:55 UTC (permalink / raw)
  To: Jari Häkkinen; +Cc: gsl-discuss

Jari Häkkinen writes:
 > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
 > In file included from test.c:61,
 >                   from test_static.c:6:
 > test_complex_source.c: In function `test_complex_float_trap':
 > test_complex_source.c:258: Internal compiler error in subst, at 
 > combine.c:3546
 > Please submit a full bug report,
 > with preprocessed source if appropriate.
 > See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
 > make[2]: *** [test_static.o] Error 1
 > 
 > 
 > I have not submitted a bug-report. Is this a known problem?

I have not seen that problem before -- it needs to be reported to the
gcc maintainers if it is not fixed in their latest release.

regards
Brian Gough

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

* Problems compiling tests with gcc 3.1
@ 2002-12-31  9:55 Jari Häkkinen
  2002-05-29  3:46 ` Jari Häkkinen
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Jari Häkkinen @ 2002-12-31  9:55 UTC (permalink / raw)
  To: gsl-discuss

Hi.

I have problems running (compiling) some of the test programs with gcc 
version 3.1. The test programs compile using gcc 2.95.

I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the 
projects works alright. When running 'make check' all directories, 
except vector and matrix, compiles and passes all tests. In the matrix 
and vector directories, gcc gives the following output:

gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
In file included from test.c:61,
                  from test_static.c:6:
test_complex_source.c: In function `test_complex_float_trap':
test_complex_source.c:258: Internal compiler error in subst, at 
combine.c:3546
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
make[2]: *** [test_static.o] Error 1


I have not submitted a bug-report. Is this a known problem?

Jari


-- 
Jari Häkkinen, PhD
Complex Systems Division                        mailto:jari@thep.lu.se
Department of Theoretical Physics               phone: +46 (0)46 2220667
Lund University                                 fax:   +46 (0)46 2229686
Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se


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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 ` Brian Gough
  2002-05-30  4:59   ` Brian Gough
@ 2002-12-31  9:55   ` John Ketchum
  2002-05-31 10:17     ` John Ketchum
  1 sibling, 1 reply; 12+ messages in thread
From: John Ketchum @ 2002-12-31  9:55 UTC (permalink / raw)
  To: Brian Gough, Jari Häkkinen; +Cc: gsl-discuss

I have had the same problem when building with gcc 3.1.  I managed to run 
the gsl test suite with gcc 3.1 by compiling the test.c and test_static.c 
routines in gsl-1.1.1/vector and gsl-1.1.1/matrix with the default redhat 
version of gcc (2.96-98), then running make check, configured to use gcc 
3.1.  All the checks ran successfully.
At 07:12 PM 5/29/2002 +0100, Brian Gough wrote:
>Jari Häkkinen writes:
>  > gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>  > In file included from test.c:61,
>  >                   from test_static.c:6:
>  > test_complex_source.c: In function `test_complex_float_trap':
>  > test_complex_source.c:258: Internal compiler error in subst, at
>  > combine.c:3546
>  > Please submit a full bug report,
>  > with preprocessed source if appropriate.
>  > See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>  > make[2]: *** [test_static.o] Error 1
>  >
>  >
>  > I have not submitted a bug-report. Is this a known problem?
>
>I have not seen that problem before -- it needs to be reported to the
>gcc maintainers if it is not fixed in their latest release.
>
>regards
>Brian Gough

John Ketchum
Qualcomm Inc.
9 Damonmill Square Suite 2A
Concord, MA 01742
Office: 60915
Direct: 781-276-0915
Fax: 781-276-0901
Mobile: 617-312-7023

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 Problems compiling tests with gcc 3.1 Jari Häkkinen
  2002-05-29  3:46 ` Jari Häkkinen
@ 2002-12-31  9:55 ` Achim Gaedke
  2002-05-31 10:45   ` Achim Gaedke
  2002-12-31  9:55   ` Jari Häkkinen
  2002-12-31  9:55 ` Brian Gough
  2 siblings, 2 replies; 12+ messages in thread
From: Achim Gaedke @ 2002-12-31  9:55 UTC (permalink / raw)
  To: Jari Häkkinen; +Cc: gsl-discuss

Hi Jari!

I stated, that I was successful with gcc-3.1 and redhat7.3, but that was due to

CFLAGS="-O0 -g"

no optimization. With the default CFLAGS="-O2 -g" I had the same error.

/opt/gcc-3.1/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test.c
In file included from test.c:61:
test_complex_source.c: In function `test_complex_float_trap':
test_complex_source.c:258: Internal compiler error in subst, at combine.c:3546

This is an abort statement in gcc-3.1/gcc/combine.c .

I DO agree with Brian, that this error MUST be reported to gcc. If you need help
with the bug report, please ask.

Yours, Achim

Jari Häkkinen schrieb:
> 
> Hi.
> 
> I have problems running (compiling) some of the test programs with gcc
> version 3.1. The test programs compile using gcc 2.95.
> 
> I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the
> projects works alright. When running 'make check' all directories,
> except vector and matrix, compiles and passes all tests. In the matrix
> and vector directories, gcc gives the following output:
> 
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
> In file included from test.c:61,
>                   from test_static.c:6:
> test_complex_source.c: In function `test_complex_float_trap':
> test_complex_source.c:258: Internal compiler error in subst, at
> combine.c:3546
> Please submit a full bug report,
> with preprocessed source if appropriate.
> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
> make[2]: *** [test_static.o] Error 1
> 
> I have not submitted a bug-report. Is this a known problem?
> 
> Jari
> 
> --
> Jari Häkkinen, PhD
> Complex Systems Division                        mailto:jari@thep.lu.se
> Department of Theoretical Physics               phone: +46 (0)46 2220667
> Lund University                                 fax:   +46 (0)46 2229686
> Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se

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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 ` Achim Gaedke
  2002-05-31 10:45   ` Achim Gaedke
@ 2002-12-31  9:55   ` Jari Häkkinen
  2002-05-31 12:45     ` Jari Häkkinen
  1 sibling, 1 reply; 12+ messages in thread
From: Jari Häkkinen @ 2002-12-31  9:55 UTC (permalink / raw)
  To: Achim Gaedke; +Cc: gsl-discuss

Thanks for testing. I'll submit a bug report to the gcc development team 
during the weekend.

Jari


Achim Gaedke wrote:

> Hi Jari!
> 
> I stated, that I was successful with gcc-3.1 and redhat7.3, but that was due to
> 
> CFLAGS="-O0 -g"
> 
> no optimization. With the default CFLAGS="-O2 -g" I had the same error.
> 
> /opt/gcc-3.1/bin/gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test.c
> In file included from test.c:61:
> test_complex_source.c: In function `test_complex_float_trap':
> test_complex_source.c:258: Internal compiler error in subst, at combine.c:3546
> 
> This is an abort statement in gcc-3.1/gcc/combine.c .
> 
> I DO agree with Brian, that this error MUST be reported to gcc. If you need help
> with the bug report, please ask.
> 
> Yours, Achim
> 
> Jari Häkkinen schrieb:
> 
>>Hi.
>>
>>I have problems running (compiling) some of the test programs with gcc
>>version 3.1. The test programs compile using gcc 2.95.
>>
>>I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the
>>projects works alright. When running 'make check' all directories,
>>except vector and matrix, compiles and passes all tests. In the matrix
>>and vector directories, gcc gives the following output:
>>
>>gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>>In file included from test.c:61,
>>                  from test_static.c:6:
>>test_complex_source.c: In function `test_complex_float_trap':
>>test_complex_source.c:258: Internal compiler error in subst, at
>>combine.c:3546
>>Please submit a full bug report,
>>with preprocessed source if appropriate.
>>See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>>make[2]: *** [test_static.o] Error 1
>>
>>I have not submitted a bug-report. Is this a known problem?
>>
>>Jari
>>
>>--
>>Jari Häkkinen, PhD
>>Complex Systems Division                        mailto:jari@thep.lu.se
>>Department of Theoretical Physics               phone: +46 (0)46 2220667
>>Lund University                                 fax:   +46 (0)46 2229686
>>Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se
>>


-- 
Jari Häkkinen                                  tel: +46 (0)40 320697
mailto:jari@chiralcomp.com                     http://www.chiralcomp.com

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

* Re: Problems compiling tests with gcc 3.1
       [not found] <Pine.GSO.3.95.1020529133453.5635A-100000@Octopussy>
@ 2002-12-31  9:55 ` Jari Häkkinen
  2002-05-29 11:27   ` Jari Häkkinen
  0 siblings, 1 reply; 12+ messages in thread
From: Jari Häkkinen @ 2002-12-31  9:55 UTC (permalink / raw)
  To: gsl-discuss

Oh, of course. I use redhat 7.2 i386. So, it seems that I cannot claim 
the problem is due to the compiler. I'll do some more experiments, and 
return with more information.

Jari


Achim Gaedke wrote:

> Hmmm, what os do you use?!
> I was successful on redhat7.3 i386 linux with gcc-3.1 (compiled by
> myself).
> 
> Achim Gaedke, ZPR
> Weyertal 80, 50931 Köln
> Tel: +49 221 470 6021
> 
> On Wed, 29 May 2002, Jari [ISO-8859-1] Häkkinen wrote:
> 
> 
>>Hi.
>>
>>I have problems running (compiling) some of the test programs with gcc 
>>version 3.1. The test programs compile using gcc 2.95.
>>
>>I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the 
>>projects works alright. When running 'make check' all directories, 
>>except vector and matrix, compiles and passes all tests. In the matrix 
>>and vector directories, gcc gives the following output:
>>
>>gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>>In file included from test.c:61,
>>                  from test_static.c:6:
>>test_complex_source.c: In function `test_complex_float_trap':
>>test_complex_source.c:258: Internal compiler error in subst, at 
>>combine.c:3546
>>Please submit a full bug report,
>>with preprocessed source if appropriate.
>>See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>>make[2]: *** [test_static.o] Error 1
>>
>>
>>I have not submitted a bug-report. Is this a known problem?
>>
>>Jari
>>
>>
>>-- 
>>Jari Häkkinen, PhD
>>Complex Systems Division                        mailto:jari@thep.lu.se
>>Department of Theoretical Physics               phone: +46 (0)46 2220667
>>Lund University                                 fax:   +46 (0)46 2229686
>>Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se
>>
>>
> 
> 


-- 
Jari Häkkinen, PhD
Complex Systems Division                        mailto:jari@thep.lu.se
Department of Theoretical Physics               phone: +46 (0)46 2220667
Lund University                                 fax:   +46 (0)46 2229686
Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se


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

* Re: Problems compiling tests with gcc 3.1
  2002-12-31  9:55 ` Jari Häkkinen
@ 2002-05-29 11:27   ` Jari Häkkinen
  0 siblings, 0 replies; 12+ messages in thread
From: Jari Häkkinen @ 2002-05-29 11:27 UTC (permalink / raw)
  To: gsl-discuss

Oh, of course. I use redhat 7.2 i386. So, it seems that I cannot claim 
the problem is due to the compiler. I'll do some more experiments, and 
return with more information.

Jari


Achim Gaedke wrote:

> Hmmm, what os do you use?!
> I was successful on redhat7.3 i386 linux with gcc-3.1 (compiled by
> myself).
> 
> Achim Gaedke, ZPR
> Weyertal 80, 50931 Köln
> Tel: +49 221 470 6021
> 
> On Wed, 29 May 2002, Jari [ISO-8859-1] Häkkinen wrote:
> 
> 
>>Hi.
>>
>>I have problems running (compiling) some of the test programs with gcc 
>>version 3.1. The test programs compile using gcc 2.95.
>>
>>I am working with gsl 1.1.1, and compiling ('make' with gcc 3.1) the 
>>projects works alright. When running 'make check' all directories, 
>>except vector and matrix, compiles and passes all tests. In the matrix 
>>and vector directories, gcc gives the following output:
>>
>>gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I..    -g -O2 -c test_static.c
>>In file included from test.c:61,
>>                  from test_static.c:6:
>>test_complex_source.c: In function `test_complex_float_trap':
>>test_complex_source.c:258: Internal compiler error in subst, at 
>>combine.c:3546
>>Please submit a full bug report,
>>with preprocessed source if appropriate.
>>See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
>>make[2]: *** [test_static.o] Error 1
>>
>>
>>I have not submitted a bug-report. Is this a known problem?
>>
>>Jari
>>
>>
>>-- 
>>Jari Häkkinen, PhD
>>Complex Systems Division                        mailto:jari@thep.lu.se
>>Department of Theoretical Physics               phone: +46 (0)46 2220667
>>Lund University                                 fax:   +46 (0)46 2229686
>>Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se
>>
>>
> 
> 


-- 
Jari Häkkinen, PhD
Complex Systems Division                        mailto:jari@thep.lu.se
Department of Theoretical Physics               phone: +46 (0)46 2220667
Lund University                                 fax:   +46 (0)46 2229686
Sölvegatan 14a, SE-223 62 Lund, Sweden          http://www.thep.lu.se


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

end of thread, other threads:[~2002-05-31 19:02 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-31  9:55 Problems compiling tests with gcc 3.1 Jari Häkkinen
2002-05-29  3:46 ` Jari Häkkinen
2002-12-31  9:55 ` Achim Gaedke
2002-05-31 10:45   ` Achim Gaedke
2002-12-31  9:55   ` Jari Häkkinen
2002-05-31 12:45     ` Jari Häkkinen
2002-12-31  9:55 ` Brian Gough
2002-05-30  4:59   ` Brian Gough
2002-12-31  9:55   ` John Ketchum
2002-05-31 10:17     ` John Ketchum
     [not found] <Pine.GSO.3.95.1020529133453.5635A-100000@Octopussy>
2002-12-31  9:55 ` Jari Häkkinen
2002-05-29 11:27   ` Jari Häkkinen

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