@@ -328,23 +328,24 @@ def install_libraries(args, build_dir, universal_lib_dir, toolchain_lib_dir, tar
328
328
install_library (args , build_dir , package_subpath , lib ,
329
329
universal_lib_dir , toolchain_lib_dir , 'swift-driver' , targets )
330
330
331
- # Instal the swift-tools-support core shared libraries into the toolchain lib
331
+ # Install the swift-tools-support core shared libraries into the toolchain lib
332
332
package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-tools-support-core' )
333
333
for lib in ['libTSCBasic' , 'libTSCLibc' , 'libTSCUtility' ]:
334
334
install_library (args , build_dir , package_subpath , lib ,
335
335
universal_lib_dir , toolchain_lib_dir , 'swift-tools-support-core' , targets )
336
336
337
- # Instal the swift-system shared library into the toolchain lib
337
+ # Install the swift-system shared library into the toolchain lib
338
338
package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-system' )
339
339
install_library (args , build_dir , package_subpath , 'libSystemPackage' ,
340
340
universal_lib_dir , toolchain_lib_dir , 'swift-system' , targets )
341
341
342
- # Instal the swift-argument-parser shared library into the toolchain lib
342
+ # Install the swift-argument-parser shared libraries into the toolchain lib
343
343
package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-argument-parser' )
344
- install_library (args , build_dir , package_subpath , 'libArgumentParser' ,
345
- universal_lib_dir , toolchain_lib_dir ,'swift-argument-parser' , targets )
344
+ for lib in ['libArgumentParser' , 'libArgumentParserToolInfo' ]:
345
+ install_library (args , build_dir , package_subpath , lib ,
346
+ universal_lib_dir , toolchain_lib_dir ,'swift-argument-parser' , targets )
346
347
347
- # Instal the llbuild core shared libraries into the toolchain lib
348
+ # Install the llbuild core shared libraries into the toolchain lib
348
349
package_subpath = os .path .join (args .configuration , 'dependencies' , 'llbuild' )
349
350
for lib in ['libllbuildSwift' , 'libllbuild' ]:
350
351
install_library (args , build_dir , package_subpath , lib ,
0 commit comments