|
538 | 538 | dest='shared_cares_libpath',
|
539 | 539 | help='a directory to search for the shared cares DLL')
|
540 | 540 |
|
| 541 | +shared_optgroup.add_argument('--shared-sqlite', |
| 542 | + action='store_true', |
| 543 | + dest='shared_sqlite', |
| 544 | + default=None, |
| 545 | + help='link to a shared sqlite DLL instead of static linking') |
| 546 | + |
| 547 | +shared_optgroup.add_argument('--shared-sqlite-includes', |
| 548 | + action='store', |
| 549 | + dest='shared_sqlite_includes', |
| 550 | + help='directory containing sqlite header files') |
| 551 | + |
| 552 | +shared_optgroup.add_argument('--shared-sqlite-libname', |
| 553 | + action='store', |
| 554 | + dest='shared_sqlite_libname', |
| 555 | + default='sqlite3', |
| 556 | + help='alternative lib name to link to [default: %(default)s]') |
| 557 | + |
| 558 | +shared_optgroup.add_argument('--shared-sqlite-libpath', |
| 559 | + action='store', |
| 560 | + dest='shared_sqlite_libpath', |
| 561 | + help='a directory to search for the shared sqlite DLL') |
| 562 | + |
| 563 | + |
541 | 564 | for builtin in shareable_builtins:
|
542 | 565 | builtin_id = 'shared_builtin_' + builtin + '_path'
|
543 | 566 | shared_builtin_optgroup.add_argument('--shared-builtin-' + builtin + '-path',
|
@@ -2156,6 +2179,7 @@ def make_bin_override():
|
2156 | 2179 | configure_library('nghttp2', output, pkgname='libnghttp2')
|
2157 | 2180 | configure_library('nghttp3', output, pkgname='libnghttp3')
|
2158 | 2181 | configure_library('ngtcp2', output, pkgname='libngtcp2')
|
| 2182 | +configure_library('sqlite', output, pkgname='sqlite3') |
2159 | 2183 | configure_library('uvwasi', output, pkgname='libuvwasi')
|
2160 | 2184 | configure_v8(output)
|
2161 | 2185 | configure_openssl(output)
|
|
0 commit comments