@@ -248,7 +248,7 @@ def install_swiftdriver(args, build_dir, prefix, targets) :
248248
249249 # Binary Swift Modules:
250250 # swift-driver: SwiftDriver.swiftmodule, SwiftOptions.swiftmodule
251- # swift-tools-support-core: TSCUtility.swiftmodule, TSCLibc.swiftmodule, TSCBasic.swiftmodule
251+ # swift-tools-support-core: TSCUtility.swiftmodule, TSCBasic.swiftmodule
252252 # swift-argument-parser: ArgumentParser.swiftmodule (disabled until needed)
253253 # swift-system: SystemPackage.swiftmodule
254254 install_binary_swift_modules (args , build_dir , install_lib , targets )
@@ -303,7 +303,7 @@ def install_libraries(args, build_dir, universal_lib_dir, toolchain_lib_dir, tar
303303
304304 # Fixup the TSC and llbuild rpaths
305305 driver_libs = [os .path .join ('lib' , d ) for d in ['libSwiftDriver' , 'libSwiftOptions' , 'libSwiftDriverExecution' ]]
306- tsc_libs = [os .path .join ('dependencies' , 'swift-tools-support-core' , 'lib' , d ) for d in ['libTSCBasic' , 'libTSCLibc' , ' libTSCUtility' ]]
306+ tsc_libs = [os .path .join ('dependencies' , 'swift-tools-support-core' , 'lib' , d ) for d in ['libTSCBasic' , 'libTSCUtility' ]]
307307 for lib in driver_libs + tsc_libs :
308308 for target in targets :
309309 lib_path = os .path .join (build_dir , target ,
@@ -323,7 +323,7 @@ def install_libraries(args, build_dir, universal_lib_dir, toolchain_lib_dir, tar
323323
324324 # Install the swift-tools-support core shared libraries into the toolchain lib
325325 package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-tools-support-core' )
326- for lib in ['libTSCBasic' , 'libTSCLibc' , ' libTSCUtility' ]:
326+ for lib in ['libTSCBasic' , 'libTSCUtility' ]:
327327 install_library (args , build_dir , package_subpath , lib , shared_lib_ext ,
328328 universal_lib_dir , toolchain_lib_dir , 'swift-tools-support-core' , targets )
329329
@@ -371,7 +371,7 @@ def install_binary_swift_modules(args, build_dir, toolchain_lib_dir, targets):
371371 # swift-tools-support-core
372372 package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-tools-support-core' ,
373373 product_subpath )
374- for module in ['TSCUtility' , 'TSCLibc' , ' TSCBasic' ]:
374+ for module in ['TSCUtility' , 'TSCBasic' ]:
375375 install_module (args , build_dir , package_subpath , toolchain_lib_dir , module , targets )
376376
377377 # swift-argument-parser
0 commit comments