MCPcopy Index your code
hub / github.com/nodejs/node / configure_sqlite

Function configure_sqlite

configure.py:2315–2324  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

2313 configure_library('lief', o, pkgname='LIEF')
2314
2315def 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
2326def bundled_ffi_supported(os_name, target_arch):
2327 if target_arch == 'x86':

Callers 1

configure.pyFile · 0.85

Calls 3

without_sqlite_errorFunction · 0.85
configure_libraryFunction · 0.85
bFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…