Hello,
I have tried to install ATLAS AND LAPACK into my Mac G4 machine for two days. And I have met various problems. Now I am up to something beyond my ability. I would apreciate it if anybody could help me.
I have intalled ATLAS AND tested it. Now I am trying to install LAPACK using ATLAS's blas. My make.inc file is:
####################################################################
# LAPACK make include file. #
# LAPACK, Version 3.0 #
# June 30, 1999 #
####################################################################
#
SHELL = /bin/sh
#
# The machine (platform) identifier to append to the library names
#
PLAT = _G4
#
# Modify the FORTRAN and OPTS 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.
#
FORTRAN = g77
#OPTS = -O4 -u -f -mt
#OPTS = -u -f -dalign -native -xO5 -xarch=v8plusa
OPTS = -O3
DRVOPTS = $(OPTS)
NOOPT = -O0
#NOOPT = -u -f -mt
LOADER = g77
#LOADOPTS = -mt
LOADOPTS = -O5
#
# 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 = ../../blas$(PLAT).a
#BLASLIB = -xlic_lib=sunperf_mt
BLASLIB = -L/Users/pavonine/ATLAS/lib/G4/ -lf77blas -latlas \
-L/usr/lib/gcc/darwin/3.1 \
-L/usr/lib/gcc/darwin -L/usr/libexec/gcc
LAPACKLIB = lapack$(PLAT).a
TMGLIB = tmglib$(PLAT).a
EIGSRCLIB = eigsrc$(PLAT).a
LINSRCLIB = linsrc$(PLAT).a
#####################
And I have got an error message like:
( cd TIMING/LIN; make )
g77 -O5 atimin.o atimck.o icopy.o ilaenv.o xlaenv.o slaord.o sprtbl.o sprtb2.o sprtb3.o sprtb4.o sprtb5.o sprtls.o smflop.o sopaux.o sopbl2.o sopbl3.o sopgb.o sopla.o stimaa.o stimmg.o stimmv.o stimmm.o stimb2.o stimb3.o stimge.o stimgb.o stimgt.o stimls.o stimpo.o stimpp.o stimpb.o stimpt.o stimsy.o stimsp.o stimtr.o stimtp.o stimtb.o stimhr.o stimtd.o stimbr.o stimq3.o stimqr.o stimlq.o stimql.o stimrq.o stimqp.o sqrt13.o sqrt15.o slinpk.o seispk.o \
../../tmglib_G4.a linsrc_G4.a ../../lapack_G4.a -L/Users/pavonine/ATLAS/lib/G4/ -lf77blas -latlas -L/usr/lib/gcc/darwin/3.1 -L/usr/lib/gcc/darwin -L/usr/libexec/gcc -o ../xlintims
g77: linsrc_G4.a: No such file or directory
make[1]: *** [../xlintims] Error 1
make: *** [blas_timing] Error 2
Any hints?
Thanks.