We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5277a76 + fb7a5b8 commit 3bd6716Copy full SHA for 3bd6716
utils/swift_build_support/swift_build_support/products/swiftsyntax.py
@@ -94,17 +94,10 @@ def should_install(self, host_target):
94
return self.args.install_swiftsyntax
95
96
def install(self, target_name):
97
- install_prefix = self.args.install_destdir + self.args.install_prefix
98
-
99
- dylib_dir = os.path.join(install_prefix, 'lib')
100
101
- additional_params = [
102
- '--dylib-dir', dylib_dir,
103
- '--install'
104
- ]
105
106
- self.run_swiftsyntax_build_script(target=target_name,
107
- additional_params=additional_params)
+ # SwiftSyntax doesn't produce any products thate should be installed
+ # into the toolchein. All tools using it link against SwiftSyntax
+ # statically.
+ pass
108
109
@classmethod
110
def get_dependencies(cls):
0 commit comments