@@ -248,7 +248,7 @@ def install_swiftdriver(args, build_dir, prefix, targets) :
248
248
249
249
# Binary Swift Modules:
250
250
# 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
252
252
# swift-argument-parser: ArgumentParser.swiftmodule (disabled until needed)
253
253
# swift-system: SystemPackage.swiftmodule
254
254
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
303
303
304
304
# Fixup the TSC and llbuild rpaths
305
305
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' ]]
307
307
for lib in driver_libs + tsc_libs :
308
308
for target in targets :
309
309
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
323
323
324
324
# Install the swift-tools-support core shared libraries into the toolchain lib
325
325
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' ]:
327
327
install_library (args , build_dir , package_subpath , lib , shared_lib_ext ,
328
328
universal_lib_dir , toolchain_lib_dir , 'swift-tools-support-core' , targets )
329
329
@@ -371,7 +371,7 @@ def install_binary_swift_modules(args, build_dir, toolchain_lib_dir, targets):
371
371
# swift-tools-support-core
372
372
package_subpath = os .path .join (args .configuration , 'dependencies' , 'swift-tools-support-core' ,
373
373
product_subpath )
374
- for module in ['TSCUtility' , 'TSCLibc' , ' TSCBasic' ]:
374
+ for module in ['TSCUtility' , 'TSCBasic' ]:
375
375
install_module (args , build_dir , package_subpath , toolchain_lib_dir , module , targets )
376
376
377
377
# swift-argument-parser
0 commit comments