xLA_xxRFSX_EXTENDED; parameter comments: pull various dimension specifications contai...
[platform/upstream/lapack.git] / INSTALL / make.inc.XLF
1 ####################################################################
2 #  LAPACK make include file.                                       #
3 #  LAPACK, Version 3.7.0                                           #
4 #  December 2016                                                   #
5 ####################################################################
6
7 SHELL = /bin/sh
8
9 #  CC is the C compiler, normally invoked with options CFLAGS.
10 #
11 CC     = xlc
12 CFLAGS = -O3 -qnosave
13
14 #  Modify the FORTRAN and OPTS definitions to refer to the compiler
15 #  and desired compiler options for your machine.  NOOPT refers to
16 #  the compiler options desired when NO OPTIMIZATION is selected.
17 #
18 FORTRAN = xlf
19 OPTS    = -O3 -qfixed -qnosave
20 # For -O2, add -qstrict=none
21 DRVOPTS = $(OPTS)
22 NOOPT   = -O0 -qfixed -qnosave
23
24 #  Define LOADER and LOADOPTS to refer to the loader and desired
25 #  load options for your machine.
26 #
27 LOADER   = xlf
28 LOADOPTS = -qnosave
29
30 #  The archiver and the flag(s) to use when building an archive
31 #  (library).  If your system has no ranlib, set RANLIB = echo.
32 #
33 ARCH      = ar
34 ARCHFLAGS = cr
35 RANLIB    = ranlib
36
37 #  Timer for the SECOND and DSECND routines
38 #
39 #  Default:  SECOND and DSECND will use a call to the
40 #  EXTERNAL FUNCTION ETIME
41 #TIMER = EXT_ETIME
42 #  For RS6K:  SECOND and DSECND will use a call to the
43 #  EXTERNAL FUNCTION ETIME_
44 TIMER = EXT_ETIME_
45 #  For gfortran compiler:  SECOND and DSECND will use a call to the
46 #  INTERNAL FUNCTION ETIME
47 #TIMER = INT_ETIME
48 #  If your Fortran compiler does not provide etime (like Nag Fortran
49 #  Compiler, etc...) SECOND and DSECND will use a call to the
50 #  INTERNAL FUNCTION CPU_TIME
51 #TIMER = INT_CPU_TIME
52 #  If none of these work, you can use the NONE value.
53 #  In that case, SECOND and DSECND will always return 0.
54 #TIMER = NONE
55
56 #  Uncomment the following line to include deprecated routines in
57 #  the LAPACK library.
58 #
59 #BUILD_DEPRECATED = Yes
60
61 #  LAPACKE has the interface to some routines from tmglib.
62 #  If LAPACKE_WITH_TMG is defined, add those routines to LAPACKE.
63 #
64 #LAPACKE_WITH_TMG = Yes
65
66 #  Location of the extended-precision BLAS (XBLAS) Fortran library
67 #  used for building and testing extended-precision routines.  The
68 #  relevant routines will be compiled and XBLAS will be linked only
69 #  if USEXBLAS is defined.
70 #
71 #USEXBLAS = Yes
72 #XBLASLIB = -lxblas
73
74 #  The location of the libraries to which you will link.  (The
75 #  machine-specific, optimized BLAS library should be used whenever
76 #  possible.)
77 #
78 #BLASLIB      = ../../librefblas.a
79 BLASLIB      = -lessl
80 CBLASLIB     = ../../libcblas.a
81 LAPACKLIB    = liblapack.a
82 TMGLIB       = libtmglib.a
83 LAPACKELIB   = liblapacke.a