As mentioned here: https://github.com/bytecodealliance/StarlingMonkey/pull/242#issuecomment-3201119743 we should re-enable this warning and use suppression maps from clang: https://clang.llvm.org/docs/WarningSuppressionMappings.html ``` # .clang-suppression: # Suppress -Winvalid-offsetof warnings in SpiderMonkey [invalid-offsetof] src:*/spidermonkey-debug/* src:*/spidermonkey-release/* ``` This will be possible when we update to the version of `wasi-sdk` with `clang` version `>=20`
As mentioned here: #242 (comment) we should re-enable this warning and use suppression maps from clang:
https://clang.llvm.org/docs/WarningSuppressionMappings.html
This will be possible when we update to the version of
wasi-sdkwithclangversion>=20