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.gfortran_debug 2.8 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ####################################################################
  2. # LAPACK make include file. #
  3. # LAPACK, Version 3.7.0 #
  4. # November 2017 #
  5. ####################################################################
  6. SHELL = /bin/sh
  7. # CC is the C compiler, normally invoked with options CFLAGS.
  8. #
  9. CC = gcc
  10. CFLAGS = -g
  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. # Note: During a regular execution, LAPACK might create NaN and Inf
  16. # and handle these quantities appropriately. As a consequence, one
  17. # should not compile LAPACK with flags such as -ffpe-trap=overflow.
  18. #
  19. FC = gfortran
  20. FFLAGS = -fimplicit-none -g -frecursive
  21. FFLAGS_DRV = $(FFLAGS)
  22. FFLAGS_NOOPT = $(FFLAGS) -O0
  23. # Define LDFLAGS to the desired linker options for your machine.
  24. #
  25. LDFLAGS =
  26. # The archiver and the flag(s) to use when building an archive
  27. # (library). If your system has no ranlib, set RANLIB = echo.
  28. #
  29. AR = ar
  30. ARFLAGS = cr
  31. RANLIB = ranlib
  32. # Timer for the SECOND and DSECND routines
  33. #
  34. # Default: SECOND and DSECND will use a call to the
  35. # EXTERNAL FUNCTION ETIME
  36. #TIMER = EXT_ETIME
  37. # For RS6K: SECOND and DSECND will use a call to the
  38. # EXTERNAL FUNCTION ETIME_
  39. #TIMER = EXT_ETIME_
  40. # For gfortran compiler: SECOND and DSECND will use a call to the
  41. # INTERNAL FUNCTION ETIME
  42. #TIMER = INT_ETIME
  43. # If your Fortran compiler does not provide etime (like Nag Fortran
  44. # Compiler, etc...) SECOND and DSECND will use a call to the
  45. # INTERNAL FUNCTION CPU_TIME
  46. TIMER = INT_CPU_TIME
  47. # If none of these work, you can use the NONE value.
  48. # In that case, SECOND and DSECND will always return 0.
  49. #TIMER = NONE
  50. # Uncomment the following line to include deprecated routines in
  51. # the LAPACK library.
  52. #
  53. #BUILD_DEPRECATED = Yes
  54. # LAPACKE has the interface to some routines from tmglib.
  55. # If LAPACKE_WITH_TMG is defined, add those routines to LAPACKE.
  56. #
  57. #LAPACKE_WITH_TMG = Yes
  58. # Location of the extended-precision BLAS (XBLAS) Fortran library
  59. # used for building and testing extended-precision routines. The
  60. # relevant routines will be compiled and XBLAS will be linked only
  61. # if USEXBLAS is defined.
  62. #
  63. #USEXBLAS = Yes
  64. #XBLASLIB = -lxblas
  65. # The location of the libraries to which you will link. (The
  66. # machine-specific, optimized BLAS library should be used whenever
  67. # possible.)
  68. #
  69. BLASLIB = $(TOPSRCDIR)/librefblas.a
  70. CBLASLIB = $(TOPSRCDIR)/libcblas.a
  71. LAPACKLIB = $(TOPSRCDIR)/liblapack.a
  72. TMGLIB = $(TOPSRCDIR)/libtmglib.a
  73. LAPACKELIB = $(TOPSRCDIR)/liblapacke.a