You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

make.inc.SUN4SOL2 2.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. ####################################################################
  2. # LAPACK make include file. #
  3. # LAPACK, Version 3.7.0 #
  4. # December 2016 #
  5. ####################################################################
  6. SHELL = /bin/sh
  7. # CC is the C compiler, normally invoked with options CFLAGS.
  8. #
  9. CC = cc
  10. CFLAGS = -O3
  11. # Modify the FC and FFLAGS definitions to the desired compiler
  12. # and desired compiler options for your machine. NOOPT refers to
  13. # the compiler options desired when NO OPTIMIZATION is selected.
  14. #
  15. FC = f77
  16. #FFLAGS = -O4 -u -f -mt
  17. #FFLAGS = -u -f -dalign -native -xO5 -xarch=v8plusa
  18. FFLAGS = -u -f -dalign -native -xO2 -xarch=v8plusa
  19. FFLAGS_DRV = $(FFLAGS)
  20. FFLAGS_NOOPT = -u -f
  21. #FFLAGS_NOOPT = -u -f -mt
  22. # Define LDFLAGS to the desired linker options for your machine.
  23. #
  24. LDFLAGS =
  25. # The archiver and the flag(s) to use when building an archive
  26. # (library). If your system has no ranlib, set RANLIB = echo.
  27. #
  28. AR = ar
  29. ARFLAGS = cr
  30. RANLIB = echo
  31. # Timer for the SECOND and DSECND routines
  32. #
  33. # Default: SECOND and DSECND will use a call to the
  34. # EXTERNAL FUNCTION ETIME
  35. TIMER = EXT_ETIME
  36. # For RS6K: SECOND and DSECND will use a call to the
  37. # EXTERNAL FUNCTION ETIME_
  38. #TIMER = EXT_ETIME_
  39. # For gfortran compiler: SECOND and DSECND will use a call to the
  40. # INTERNAL FUNCTION ETIME
  41. #TIMER = INT_ETIME
  42. # If your Fortran compiler does not provide etime (like Nag Fortran
  43. # Compiler, etc...) SECOND and DSECND will use a call to the
  44. # INTERNAL FUNCTION CPU_TIME
  45. #TIMER = INT_CPU_TIME
  46. # If none of these work, you can use the NONE value.
  47. # In that case, SECOND and DSECND will always return 0.
  48. #TIMER = NONE
  49. # Uncomment the following line to include deprecated routines in
  50. # the LAPACK library.
  51. #
  52. #BUILD_DEPRECATED = Yes
  53. # LAPACKE has the interface to some routines from tmglib.
  54. # If LAPACKE_WITH_TMG is defined, add those routines to LAPACKE.
  55. #
  56. #LAPACKE_WITH_TMG = Yes
  57. # Location of the extended-precision BLAS (XBLAS) Fortran library
  58. # used for building and testing extended-precision routines. The
  59. # relevant routines will be compiled and XBLAS will be linked only
  60. # if USEXBLAS is defined.
  61. #
  62. #USEXBLAS = Yes
  63. #XBLASLIB = -lxblas
  64. # The location of the libraries to which you will link. (The
  65. # machine-specific, optimized BLAS library should be used whenever
  66. # possible.)
  67. #
  68. #BLASLIB = $(TOPSRCDIR)/librefblas.a
  69. #BLASLIB = -xlic_lib=sunperf_mt
  70. BLASLIB = -xlic_lib=sunperf
  71. CBLASLIB = $(TOPSRCDIR)/libcblas.a
  72. LAPACKLIB = $(TOPSRCDIR)/liblapack.a
  73. TMGLIB = $(TOPSRCDIR)/libtmglib.a
  74. LAPACKELIB = $(TOPSRCDIR)/liblapacke.a