Hi,
I'm trying to install CLAPACK on Cygwin on my PC (Intel(R) Core(TM)2 CPU,
1,66GHz).
My makefile is
_____________________________________________________________
####################################################################
# LAPACK make include file. #
# LAPACK, Version 3.0 #
# June 30, 1999 #
####################################################################
#
# The machine (platform) identifier to append to the library names
#
PLAT = _Cygwin
#
# Modify the CC and CFLAGS definitions to refer to the
# compiler and desired compiler options for your machine. NOOPT
# refers to the compiler options desired when NO OPTIMIZATION is
# selected. Define LOADER and LOADOPTS to refer to the loader and
# desired load options for your machine.
#
#######################################################
# This is used to compile C libary
CC = gcc
CFLAGS = -funroll-all-loops -O3
LOADER = gcc
LOADOPTS = $(CFLAGS)
NOOPT =
DRVCFLAGS = $(CFLAGS)
F2CCFLAGS = $(CFLAGS) -DNO_ONEXIT
#######################################################################
#
# The archiver and the flag(s) to use when building archive (library)
# If you system has no ranlib, set RANLIB = echo.
#
ARCH = ar
ARCHFLAGS= cr
RANLIB = ranlib
#
# The location of the libraries to which you will link. (The
# machine-specific, optimized BLAS library should be used whenever
# possible.)
#
BLASLIB = ../../libcblaswr.a C:/cygwin/lib/libgsl.a
C:/cygwin/lib/libgslcblas.a
#BLASLIB = ../../libfblaswr.a -L/usr/sww/opt/SUNWspro/lib -xlic_lib=sunperf
#BLASLIB = -L/usr/sww/opt/SUNWspro/lib -Bstatic -xlic_lib=sunperf -Bdynamic
#BLASLIB = -L/home/eecs/dbindel/work/ATLAS/lib/SunOS_SunUSX \
# ../../libcblaswr.a -lcblas -latlas
LAPACKLIB = lapack$(PLAT).a
F2CLIB = ../../F2CLIBS/libF77.a ../../F2CLIBS/libI77.a
TMGLIB = tmglib$(PLAT).a
EIGSRCLIB = eigsrc$(PLAT).a
LINSRCLIB = linsrc$(PLAT).a
_____________________________________________________________
My gcc-version is 3.4.4.
I already did the following steps:
make f2clib
make cblaswrap
cd SRC; make
cd TESTING/MATGEN; make
cd TESTING/EIG; make
cd TESTING/LIN; make
Everything worked fine and finished without error.
But when doing
cd TESTING
make
the installation hangs-up after the first two lines:
C:\CLAPACK\TESTING>make
Testing REAL LAPACK linear equation rout
./xlintsts < stest.in > stest.out 2>&1
When typing Ctrl-C I get
make: *** Deleting file `stest.out'
make: *** [stest.out] Error 1
Does anyone know what could have gone wrong? :?:
Thanks a lot!
Stefanie
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.cs.utk.edu/private/lapack/attachments/20080120/34b03f95/attachment.htm
|