|
403 | 403 | dest='shared_zlib_libpath',
|
404 | 404 | help='a directory to search for the shared zlib DLL')
|
405 | 405 |
|
| 406 | +shared_optgroup.add_argument('--shared-simdjson', |
| 407 | + action='store_true', |
| 408 | + dest='shared_simdjson', |
| 409 | + default=None, |
| 410 | + help='link to a shared simdjson DLL instead of static linking') |
| 411 | + |
| 412 | +shared_optgroup.add_argument('--shared-simdjson-includes', |
| 413 | + action='store', |
| 414 | + dest='shared_simdjson_includes', |
| 415 | + help='directory containing simdjson header files') |
| 416 | + |
| 417 | +shared_optgroup.add_argument('--shared-simdjson-libname', |
| 418 | + action='store', |
| 419 | + dest='shared_simdjson_libname', |
| 420 | + default='simdjson', |
| 421 | + help='alternative lib name to link to [default: %(default)s]') |
| 422 | + |
| 423 | +shared_optgroup.add_argument('--shared-simdjson-libpath', |
| 424 | + action='store', |
| 425 | + dest='shared_simdjson_libpath', |
| 426 | + help='a directory to search for the shared simdjson DLL') |
| 427 | + |
| 428 | + |
| 429 | +shared_optgroup.add_argument('--shared-simdutf', |
| 430 | + action='store_true', |
| 431 | + dest='shared_simdutf', |
| 432 | + default=None, |
| 433 | + help='link to a shared simdutf DLL instead of static linking') |
| 434 | + |
| 435 | +shared_optgroup.add_argument('--shared-simdutf-includes', |
| 436 | + action='store', |
| 437 | + dest='shared_simdutf_includes', |
| 438 | + help='directory containing simdutf header files') |
| 439 | + |
| 440 | +shared_optgroup.add_argument('--shared-simdutf-libname', |
| 441 | + action='store', |
| 442 | + dest='shared_simdutf_libname', |
| 443 | + default='simdutf', |
| 444 | + help='alternative lib name to link to [default: %(default)s]') |
| 445 | + |
| 446 | +shared_optgroup.add_argument('--shared-simdutf-libpath', |
| 447 | + action='store', |
| 448 | + dest='shared_simdutf_libpath', |
| 449 | + help='a directory to search for the shared simdutf DLL') |
| 450 | + |
| 451 | + |
| 452 | +shared_optgroup.add_argument('--shared-ada', |
| 453 | + action='store_true', |
| 454 | + dest='shared_ada', |
| 455 | + default=None, |
| 456 | + help='link to a shared ada DLL instead of static linking') |
| 457 | + |
| 458 | +shared_optgroup.add_argument('--shared-ada-includes', |
| 459 | + action='store', |
| 460 | + dest='shared_ada_includes', |
| 461 | + help='directory containing ada header files') |
| 462 | + |
| 463 | +shared_optgroup.add_argument('--shared-ada-libname', |
| 464 | + action='store', |
| 465 | + dest='shared_ada_libname', |
| 466 | + default='ada', |
| 467 | + help='alternative lib name to link to [default: %(default)s]') |
| 468 | + |
| 469 | +shared_optgroup.add_argument('--shared-ada-libpath', |
| 470 | + action='store', |
| 471 | + dest='shared_ada_libpath', |
| 472 | + help='a directory to search for the shared ada DLL') |
| 473 | + |
406 | 474 | shared_optgroup.add_argument('--shared-brotli',
|
407 | 475 | action='store_true',
|
408 | 476 | dest='shared_brotli',
|
@@ -2040,6 +2108,9 @@ def make_bin_override():
|
2040 | 2108 | configure_library('zlib', output)
|
2041 | 2109 | configure_library('http_parser', output)
|
2042 | 2110 | configure_library('libuv', output)
|
| 2111 | +configure_library('ada', output) |
| 2112 | +configure_library('simdjson', output) |
| 2113 | +configure_library('simdutf', output) |
2043 | 2114 | configure_library('brotli', output, pkgname=['libbrotlidec', 'libbrotlienc'])
|
2044 | 2115 | configure_library('cares', output, pkgname='libcares')
|
2045 | 2116 | configure_library('nghttp2', output, pkgname='libnghttp2')
|
|
0 commit comments