-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wasm] Do not use link flags for bitcode compilation #108846
base: release/8.0
Are you sure you want to change the base?
Conversation
Backport of (dotnet#101397) This avoids errors like: /root/helix/work/correlation/build/wasm-shared/WasmApp.Common.targets(832,5): error : emcc: warning: linker setting ignored during compilation: 'EXPORT_ES6' [-Wunused-command-line-argument] [/root/helix/work/workitem/e/publish/ProxyProjectForAOTOnHelix.proj] /root/helix/work/correlation/build/wasm-shared/WasmApp.Common.targets(832,5): error : emcc: warning: linker setting ignored during compilation: 'EXPORT_EXCEPTION_HANDLING_HELPERS' [-Wunused-command-line-argument] [/root/helix/work/workitem/e/publish/ProxyProjectForAOTOnHelix.proj] This should helps with known build error dotnet#104827 where the warning can hide another errors
Friendly reminder that today 10/14 is Code Complete for the November Release. If this fix is intended to be included in that release, please make sure it's merged before 4pm PT. Otherwise, it will have to wait until next month. |
@lewing what do you think about merging this to release/8.0? it would allow us to cast some light to issues potentially invisible due to known build error issue |
@lewing @radekdoulik Friendly reminder that today is Code Complete for the February 2025 Release. Please get a Tactics approval and merge it before 4pm PT, otherwise it would have to wait until next month. |
Manual backport of (#101397) and (#101538)
Customer Impact
Regression
Risk
Low. Fixes warning during bc files compilation.
Description
This avoids errors like:
This should helps with known build error #104827 where the warning can hide another errors