Displaying 1 result from an estimated 1 matches for "sscal".
Did you mean:
socal
2004 May 31
1
Question about building library and BLAS
...subroutines isamax.f, sgefa.f sgesl.f in BLAS,
as expected. In fact, there are problems to use these subroutines in BLAS, for some reason.
Now what I want is to build an R library. The Makefile is the following:
LIBNAME=car
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
OBJS=isamax.o saxpy.o sscal.o foo1.o ... foo20.o -llapack -lblas
$(LIBNAME)$(SHLIB_EXT): $(OBJS)
$(SHLIB_LD) $(SHLIB_LDFLAGS) -o $@ $(OBJS) $(FLIBS)
clean:
@rm -f *.o *.$(SHLIB_EXT)
realclean: clean
Some compiling outputs are the following:
g77 -mieee-fp -fPIC -O2 -g -pipe -march=i386 -mcpu=i686 -c is...