|
554 | 554 | help='a directory to search for the shared simdjson DLL') |
555 | 555 |
|
556 | 556 |
|
| 557 | +shared_optgroup.add_argument('--shared-ata', |
| 558 | + action='store_true', |
| 559 | + dest='shared_ata', |
| 560 | + default=None, |
| 561 | + help='link to a shared ata DLL instead of static linking') |
| 562 | + |
| 563 | +shared_optgroup.add_argument('--shared-ata-includes', |
| 564 | + action='store', |
| 565 | + dest='shared_ata_includes', |
| 566 | + help='directory containing ata header files') |
| 567 | + |
| 568 | +shared_optgroup.add_argument('--shared-ata-libname', |
| 569 | + action='store', |
| 570 | + dest='shared_ata_libname', |
| 571 | + default='ata', |
| 572 | + help='alternative lib name to link to [default: %(default)s]') |
| 573 | + |
| 574 | +shared_optgroup.add_argument('--shared-ata-libpath', |
| 575 | + action='store', |
| 576 | + dest='shared_ata_libpath', |
| 577 | + help='a directory to search for the shared ata DLL') |
| 578 | + |
557 | 579 | shared_optgroup.add_argument('--shared-simdutf', |
558 | 580 | action='store_true', |
559 | 581 | dest='shared_simdutf', |
@@ -2625,6 +2647,7 @@ def make_bin_override(): |
2625 | 2647 | configure_library('libuv', output) |
2626 | 2648 | configure_library('ada', output) |
2627 | 2649 | configure_library('simdjson', output) |
| 2650 | +configure_library('ata', output) |
2628 | 2651 | configure_library('simdutf', output) |
2629 | 2652 | configure_library('brotli', output, pkgname=['libbrotlidec', 'libbrotlienc']) |
2630 | 2653 | configure_library('cares', output, pkgname='libcares') |
|
0 commit comments