Skip to content

Commit bfa7260

Browse files
authored
build: handle WASI in host_specific_configuration.py
1 parent e82060f commit bfa7260

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

utils/swift_build_support/swift_build_support/host_specific_configuration.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,8 @@ def __platforms_to_skip_build(self, args, stage_dependent_args):
260260
StdlibDeploymentTarget.AppleWatchSimulator)
261261
if not stage_dependent_args.build_android:
262262
platforms_to_skip_build.add(StdlibDeploymentTarget.Android)
263+
if not args.build_wasm:
264+
platforms_to_skip_build.add(StdlibDeploymentTarget.WASI)
263265
return platforms_to_skip_build
264266

265267
def __platforms_to_skip_test(self, args, stage_dependent_args):

0 commit comments

Comments
 (0)