(o)
| 2313 | configure_library('lief', o, pkgname='LIEF') |
| 2314 | |
| 2315 | def configure_sqlite(o): |
| 2316 | o['variables']['node_use_sqlite'] = b(not options.without_sqlite) |
| 2317 | if options.without_sqlite: |
| 2318 | def without_sqlite_error(option): |
| 2319 | error(f'--without-sqlite is incompatible with {option}') |
| 2320 | if options.shared_sqlite: |
| 2321 | without_sqlite_error('--shared-sqlite') |
| 2322 | return |
| 2323 | |
| 2324 | configure_library('sqlite', o, pkgname='sqlite3') |
| 2325 | |
| 2326 | def bundled_ffi_supported(os_name, target_arch): |
| 2327 | if target_arch == 'x86': |
no test coverage detected
searching dependent graphs…