#------------------------------------------------------------------------------- # SGI IRIX configuration #------------------------------------------------------------------------------- # Note: using CFLAGS = -O3 might be better. I haven't tried -O3. -O uses -O2. CFLAGS = -O RANLIB = echo #------------------------------------------------------------------------------- # BLAS and 32/64-bit options: uncomment the appropriate lines #------------------------------------------------------------------------------- # Default: with 32-bit int's and long's, and the 32-bit SCSL BLAS CONFIG = -DNCBLAS LIB = -lscs -lm # with no BLAS # CONFIG = -DNBLAS # LIB = -lm # with no BLAS, in 64-bit mode # CONFIG = -DNBLAS -DLP64 -64 # LIB = -lm # with 32-bit int's, 64-bit long's, and the 64-byte SCSL BLAS # Compare the output with umfpack_demo.out64 and umfpack_l_demo.out64 # CONFIG = -DNCBLAS -DLP64 -64 # LIB = -lscs_i8 -lm # with the Fortran interface to the vendor-supplied BLAS (not SCSL) # CONFIG = -DNCBLAS -DNSCSL # LIB = -lblas -lm # with the C-BLAS interface to the vendor-supplied BLAS (not SCSL) # CONFIG = -DNSCSL # LIB = -lblas -lm .