We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c143d1e commit 641e753Copy full SHA for 641e753
utils/swift_build_support/swift_build_support/products/wasisysroot.py
@@ -51,6 +51,12 @@ def build(self, host_target):
51
shell.call([
52
'make', 'install',
53
'-j', str(build_jobs),
54
+ # FIXME: wasi-libc's pre-defined macro list does not expect
55
+ # `__FPCLASS_XXX`, which is introduced by the LLVM 17, yet.
56
+ # So skip the symbol check step by treating the phony target
57
+ # as very old file.
58
+ # https://github.com/llvm/llvm-project/commit/7dd387d2971d7759cadfffeb2082439f6c7ddd49
59
+ '--old-file=check-symbols',
60
'-C', self.source_dir,
61
'OBJDIR=' + os.path.join(self.build_dir, 'obj'),
62
'SYSROOT=' + WASILibc.sysroot_build_path(build_root, host_target),
0 commit comments