I get the following error after running make
/usr/bin/ld: Undefined symbols:
_isamax
_sasum
_saxpy
_scopy
_sdot
_snrm2
_srot
_srotg
_sscal
_sswap
collect2: ld returned 1 exit status
make[1]: *** [../xblat1s] Error 1
make: *** [blas_testing] Error 2
My make.inc file I copied from one of the other posts and is as follows
####################################################################
# 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 = _APPLE_G5_OSX
#
# 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 = -u -f -dalign -native -xO5 -xarch=v8plusa
OPTS = -ffixed-form -fno-underscoring -Wall -fbounds-check -O3
DRVOPTS = $(OPTS)
NOOPT = -ffloat-store
#NOOPT = -u -f
#NOOPT = -u -f -mt
LOADER = g77
#LOADOPTS = -mt
#LOADOPTS = -f -dalign -native -xO5 -xarch=v8plusa
LOADOPTS= -lSystemStubs -Wall
#
# 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 = echo
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 = -xlic_lib=sunperf
LAPACKLIB = lapack$(PLAT).a
TMGLIB = tmglib$(PLAT).a
EIGSRCLIB = eigsrc$(PLAT).a
LINSRCLIB = linsrc$(PLAT).a
Can someone let me know what needs correcting.
Thanks
Anna

