makefile.def (only changed vars)
ARCH = SUN4
CPP = g++
CC = gcc
FLIBS = -g77 -lm -lsunperf
when 'make all', the three ++ libs are built, but failed in testing. The error information is as follows:
make[1]: Entering directory '../Lapackpp1.1a/blaspp/testing'
g++ -I../../inlcude -DSUN4 -Wall -o tblasd++ tblasd++.o ../../liblamatrix++.a\
../../libblas++.a ../LAPACK/blas_SUN4.a \
-g77 -lm -lsunperf
ld: fatal: library -lsunperf: not found
ld: fatal: File processing errors. No output written to tblasd++
collect2: ld returned 1 exit status
We did not buy the solaris C++ compiler, can we find the alternative for -lsunperf? If we do not have this library, many variables will be undefined in liblapack.a
What can we do now?
Thanks
Yading

