2026-06-10 14:28:55 -04:00
option ( 'log_level' , type : 'combo' , choices : [ 'traceL3' , 'traceL2' , 'traceL1' , 'debug' , 'info' , 'warning' , 'error' , 'critical' ] , value : 'info' , description : 'Set the log level for the GridFire library' )
2025-12-03 11:38:08 -05:00
option ( 'pkg_config' , type : 'boolean' , value : true , description : 'generate pkg-config file for GridFire (gridfire.pc)' )
option ( 'build_python' , type : 'boolean' , value : false , description : 'build the python bindings so you can use GridFire from python' )
option ( 'build_tests' , type : 'boolean' , value : true , description : 'build the test suite' )
option ( 'build_examples' , type : 'boolean' , value : true , description : 'build example code' )
option ( 'build_fortran' , type : 'boolean' , value : false , description : 'build fortran module support' )
option ( 'unsafe_fortran' , type : 'boolean' , value : false , description : 'Allow untested fortran compilers (compilers other than gfortran)' )
option ( 'plugin_support' , type : 'boolean' , value : false , description : 'Enable support for libplugin plugins' )
option ( 'python_target_version' , type : 'string' , value : '3.13' , description : 'Target version for python compilation, only used for cross compilation' )
option ( 'build_c_api' , type : 'boolean' , value : true , description : 'compile the C API' )
2025-12-06 11:41:57 -05:00
option ( 'build_tools' , type : 'boolean' , value : true , description : 'build the GridFire command line tools' )
2025-12-07 12:34:12 -05:00
option ( 'openmp_support' , type : 'boolean' , value : false , description : 'Enable OpenMP support for parallelization' )
2025-12-12 12:08:47 -05:00
option ( 'use_mimalloc' , type : 'boolean' , value : true , description : 'Use mimalloc as the memory allocator for GridFire. Generally this is ~10% faster than the system allocator.' )
2025-12-18 12:47:39 -05:00
option ( 'build_benchmarks' , type : 'boolean' , value : false , description : 'build the benchmark suite' )
2026-06-10 14:28:55 -04:00
option ( 'asan' , type : 'boolean' , value : false , description : 'Enable AddressSanitizer (ASan) support for detecting memory errors' )
2026-06-12 14:49:19 -04:00
option ( 'libomp_prefix' , type : 'string' , value : '' , description : 'Explicit prefix of an LLVM OpenMP runtime to use instead of auto-detection (macOS wheel builds). Empty = dependency(\'openmp\') auto-detection.' )