This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Intel comlier7.1 and gsl-1.3.20030805: make check fails


Hi,

"make check" for the intel's icc is failing.

http://sources.redhat.com/ml/gsl-discuss/2002-q2/msg00250.html

cat /proc/cpuinfo
====================================
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 5
model name      : Pentium II (Deschutes)
stepping        : 3
cpu MHz         : 350.802
cache size      : 512 KB
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 2
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat pse36 mmx fxsr
bogomips        : 699.59

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 5
model name      : Pentium II (Deschutes)
stepping        : 3
cpu MHz         : 350.802
cache size      : 512 KB
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 2
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat pse36 mmx fxsr
bogomips        : 701.23

uname -a
===========
Linux s3 2.4.9-686-smp #1 SMP Sun Aug 19 11:17:05 EST 2001 i686
unknown



Intel Compiler Version
=========================
iccbin -V
Intel(R) C++ Compiler for 32-bit applications, Version 7.1   Build
20030307Z
Copyright (C) 1985-2003 Intel Corporation.  All rights reserved.


1) Without any CFLAGS 
=======================
export CC=iccbin
./configure
make
make check

PASS: gsl_sf_eta_e( 6, &r)
PASS: gsl_sf_eta_e( 20, &r)
PASS: Zeta Functions
PASS: Result Methods
FAIL: test
===================
1 of 1 tests failed
===================
make[2]: *** [check-TESTS] Error 1
make[2]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make: *** [check-recursive] Error 1



2) With CFLAGS="-pc80"
=============================
-pc80 : set internal FPU precision.

export CC=iccbin
export CFLAGS="-pc80 "
./configure
make
make check

PASS: gsl_sf_eta_e( 6, &r)
PASS: gsl_sf_eta_e( 20, &r)
PASS: Zeta Functions
PASS: Result Methods
FAIL: test
===================
1 of 1 tests failed
===================
make[2]: *** [check-TESTS] Error 1
make[2]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make: *** [check-recursive] Error 1


3) With CFLAGS="-O3 -xM -unroll -pc80"
=================================
-xM : generate specialized code to run exclusively on processors
      supporting the MMX extensions.
-unroll : set maximum number of times to unroll loops

export CC=iccbin
export CFLAGS="-O3 -xM -unroll -pc80 "
./configure
make
make check

PASS: gsl_sf_eta_e( 6, &r)
PASS: gsl_sf_eta_e( 20, &r)
PASS: Zeta Functions
PASS: Result Methods
FAIL: test
===================
1 of 1 tests failed
===================
make[2]: *** [check-TESTS] Error 1
make[2]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/tmp/abrar/gsl-1.3.20030805/specfunc'
make: *** [check-recursive] Error 1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]