forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmeson.options
More file actions
32 lines (31 loc) · 1.91 KB
/
Copy pathmeson.options
File metadata and controls
32 lines (31 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
option('blas', type: 'string', value: 'openblas',
description: 'option for BLAS library switching')
option('lapack', type: 'string', value: 'openblas',
description: 'option for LAPACK library switching')
# NB ILP64 build is experimental.
# See https://scipy.github.io/devdocs/building/blas_lapack.html for details
option('use-ilp64', type: 'boolean', value: false,
description: 'Use ILP64 (64-bit integer) BLAS and LAPACK interfaces')
option('cython-blas-abi', type: 'combo', choices: ['auto', 'lp64', 'ilp64'],
value: 'auto',
description: 'Integer ABI for the cython_blas/cython_lapack Cython ' +
'API. Default (auto) matches use-ilp64.')
option('blas-symbol-suffix', type: 'string', value: 'auto',
description: 'BLAS and LAPACK symbol suffix to use, if any')
option('mkl-threading', type: 'string', value: 'auto',
description: 'MKL threading method, one of: `seq`, `iomp`, `gomp`, `tbb`')
option('use-g77-abi', type: 'boolean', value: false,
description: 'If set to true, forces using g77 compatibility wrappers ' +
'for LAPACK functions. The default is to use gfortran ' +
'ABI for all LAPACK libraries except MKL.')
option('use-pythran', type: 'boolean', value: true,
description: 'If set to false, disables using Pythran (it falls back ' +
'to either pure Python code or Cython code, depending on ' +
'the implementation).')
option('use-system-libraries', type: 'array',
choices : ['none', 'all', 'auto', 'boost.math', 'qhull'], value : ['none'],
description: 'Choose which system libraries for subprojects ' +
'if they are available.')
option('_without-fortran', type: 'boolean', value: false,
description: 'If set to true, build without a Fortran compiler ' +
'(the deprecated `scipy.odr` will be missing)')