File: meson.options

package info (click to toggle)
scipy 1.16.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 235,640 kB
  • sloc: cpp: 503,720; python: 345,299; ansic: 195,677; javascript: 89,566; fortran: 56,210; cs: 3,081; f90: 1,150; sh: 857; makefile: 792; pascal: 284; csh: 135; lisp: 134; xml: 56; perl: 51
file content (16 lines) | stat: -rw-r--r-- 1,008 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
option('blas', type: 'string', value: 'openblas',
        description: 'option for BLAS library switching')
option('lapack', type: 'string', value: 'openblas',
        description: 'option for LAPACK library switching')
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.')