|
573 | 573 | dest='shared_sqlite_libpath', |
574 | 574 | help='a directory to search for the shared sqlite DLL') |
575 | 575 |
|
| 576 | +shared_optgroup.add_argument('--shared-temporal_capi', |
| 577 | + action='store_true', |
| 578 | + dest='shared_temporal_capi', |
| 579 | + default=None, |
| 580 | + help='link to a shared temporal_capi DLL instead of static linking') |
| 581 | + |
| 582 | +shared_optgroup.add_argument('--shared-temporal_capi-includes', |
| 583 | + action='store', |
| 584 | + dest='shared_temporal_capi_includes', |
| 585 | + help='directory containing temporal_capi header files') |
| 586 | + |
| 587 | +shared_optgroup.add_argument('--shared-temporal_capi-libname', |
| 588 | + action='store', |
| 589 | + dest='shared_temporal_capi_libname', |
| 590 | + default='temporal_capi', |
| 591 | + help='alternative lib name to link to [default: %(default)s]') |
| 592 | + |
| 593 | +shared_optgroup.add_argument('--shared-temporal_capi-libpath', |
| 594 | + action='store', |
| 595 | + dest='shared_temporal_capi_libpath', |
| 596 | + help='a directory to search for the shared temporal_capi DLL') |
| 597 | + |
576 | 598 | shared_optgroup.add_argument('--shared-zstd', |
577 | 599 | action='store_true', |
578 | 600 | dest='shared_zstd', |
@@ -2365,6 +2387,7 @@ def make_bin_override(): |
2365 | 2387 | configure_library('nghttp3', output, pkgname='libnghttp3') |
2366 | 2388 | configure_library('ngtcp2', output, pkgname='libngtcp2') |
2367 | 2389 | configure_sqlite(output); |
| 2390 | +configure_library('temporal_capi', output) |
2368 | 2391 | configure_library('uvwasi', output) |
2369 | 2392 | configure_library('zstd', output, pkgname='libzstd') |
2370 | 2393 | configure_v8(output, configurations) |
|
0 commit comments