|
66 | 66 | 'build_jobs': multiprocessing.cpu_count(),
|
67 | 67 | 'build_libdispatch': False,
|
68 | 68 | 'build_libicu': False,
|
| 69 | + 'build_libxml2': False, |
| 70 | + 'build_zlib': False, |
| 71 | + 'build_curl': False, |
69 | 72 | 'build_linux': True,
|
70 | 73 | 'build_llbuild': False,
|
71 | 74 | 'build_lldb': False,
|
|
181 | 184 | 'legacy_impl': False,
|
182 | 185 | 'libdispatch_build_variant': 'Debug',
|
183 | 186 | 'libicu_build_variant': 'Debug',
|
| 187 | + 'libxml2_build_variant': 'Debug', |
| 188 | + 'zlib_build_variant': 'Debug', |
| 189 | + 'curl_build_variant': 'Debug', |
184 | 190 | 'bootstrapping_mode': None,
|
185 | 191 | 'lit_args': '-sv',
|
186 | 192 | 'llbuild_assertions': True,
|
@@ -429,6 +435,9 @@ class BuildScriptImplOption(_BaseOption):
|
429 | 435 | SetOption('--debug-libdispatch',
|
430 | 436 | dest='libdispatch_build_variant', value='Debug'),
|
431 | 437 | SetOption('--debug-libicu', dest='libicu_build_variant', value='Debug'),
|
| 438 | + SetOption('--debug-libxml2', dest='libxml2_build_variant', value='Debug'), |
| 439 | + SetOption('--debug-zlib', dest='zlib_build_variant', value='Debug'), |
| 440 | + SetOption('--debug-curl', dest='curl_build_variant', value='Debug'), |
432 | 441 | SetOption('--debug-lldb', dest='lldb_build_variant', value='Debug'),
|
433 | 442 | SetOption('--lldb-build-with-xcode', dest='lldb_build_with_xcode',
|
434 | 443 | value='1'),
|
@@ -560,6 +569,9 @@ class BuildScriptImplOption(_BaseOption):
|
560 | 569 | EnableOption('--only-non-executable-test'),
|
561 | 570 | EnableOption('--libdispatch', dest='build_libdispatch'),
|
562 | 571 | EnableOption('--libicu', dest='build_libicu'),
|
| 572 | + EnableOption('--static-libxml2', dest='build_libxml2'), |
| 573 | + EnableOption('--static-zlib', dest='build_zlib'), |
| 574 | + EnableOption('--static-curl', dest='build_curl'), |
563 | 575 | EnableOption('--indexstore-db', dest='build_indexstoredb'),
|
564 | 576 | EnableOption('--test-indexstore-db-sanitize-all',
|
565 | 577 | dest='test_indexstoredb_sanitize_all'),
|
@@ -663,6 +675,9 @@ class BuildScriptImplOption(_BaseOption):
|
663 | 675 | dest='test_swift_inspect'),
|
664 | 676 | DisableOption('--skip-build-clang-tools-extra',
|
665 | 677 | dest='build_clang_tools_extra'),
|
| 678 | + DisableOption('--skip-build-libxml2', dest='build_libxml2'), |
| 679 | + DisableOption('--skip-build-zlib', dest='build_zlib'), |
| 680 | + DisableOption('--skip-build-curl', dest='build_curl'), |
666 | 681 |
|
667 | 682 | ChoicesOption('--compiler-vendor',
|
668 | 683 | choices=['none', 'apple']),
|
|
0 commit comments