Uh oh!
There was an error while loading. Please reload this page.
[wasm] Fix regression in compiling .bc -> .o files - #56063
Conversation
…r commit .. found thanks to Jerome Laban.
.. and to MessageImportance.Normal if `$(EmccVerbose)==true`.
ghost
commented
Jul 21, 2021
Tagging subscribers to 'arch-wasm': @lewing Issue Details.. including
|
| <_EmccCFlags Include="-DCORE_BINDINGS" /> | ||
| <_EmccCFlags Include="-DGEN_PINVOKE=1" /> | ||
| <_EmccCFlags Include="-emit-llvm" /> | ||
There was a problem hiding this comment.
Won't this be passed to the .bc -> .o builds as well ?
There was a problem hiding this comment.
So, looks like I broke this in the last few days! Adding here is fine, because it will get used only to compile the .c files. And the bitcode files will use the LDFlags.
I've added a crude test to check for this, so we don't regress again.
The `-emit-llvm` arg has been incorrectly added, and removed from the args used for compiling .bc->.o . This commit fixes it, and adds a crude test for it, so we don't regress again.
karelz
commented
Jul 21, 2021
Http3_MsQuic test failures are tracked in #56090. Should be fixed and merged shortly. Sorry for the inconvenience! |
* [wasm] Add back --emit-llvm that got removed mistakenly, in an earlier commit .. found thanks to Jerome Laban. * [wasm] Set EmccCompile's messages to MessageImportance.Low by default. .. and to MessageImportance.Normal if `$(EmccVerbose)==true`. * [wasm] Quote filenames passed to emcc compile command line * Add more blazorwasm tests - for debug/release, aot/relinking * Bump sdk for workload testing to 6.0.100-rc.1.21370.2 * [wasm] Fix regression in compiling bitcode -> .o The `-emit-llvm` arg has been incorrectly added, and removed from the args used for compiling .bc->.o . This commit fixes it, and adds a crude test for it, so we don't regress again. * Fix build (cherry picked from commit 1d8ad03)
…raries (#56013) * [wasm] Add support for using custom native libraries (#55797) (cherry picked from commit d574b03) * [wasm] Use compile rsp instead of link, for compiling native files (#55848) .. and fix logging that broke recently. `tasks/Common/Utils.cs`: TaskLoggingHelper Utils.Logger is a static field, which must be set by task else any methods in Utils, eg. RunProcess, silently fail to log any messages. Also, this would be a problem when building multiple projects in parallel, since the logger is a task-specific one. Instead, we pass logger as an arg to all the methods. (cherry picked from commit 3301e9d) * Link with EmccCompileOptimizationFlag==-Oz by default in release (#55939) (cherry picked from commit 04072ff) * [wasm] Fix regression in compiling .bc -> .o files (#56063) * [wasm] Add back --emit-llvm that got removed mistakenly, in an earlier commit .. found thanks to Jerome Laban. * [wasm] Set EmccCompile's messages to MessageImportance.Low by default. .. and to MessageImportance.Normal if `$(EmccVerbose)==true`. * [wasm] Quote filenames passed to emcc compile command line * Add more blazorwasm tests - for debug/release, aot/relinking * Bump sdk for workload testing to 6.0.100-rc.1.21370.2 * [wasm] Fix regression in compiling bitcode -> .o The `-emit-llvm` arg has been incorrectly added, and removed from the args used for compiling .bc->.o . This commit fixes it, and adds a crude test for it, so we don't regress again. * Fix build (cherry picked from commit 1d8ad03) * [wasm] Bump sdk for workload testing to 6.0.100-preview.7.21372.19 Co-authored-by: Larry Ewing <lewing@microsoft.com>
The
-emit-llvmarg has been incorrectly added, and removed from theargs used for compiling .bc->.o couple of times. Added a crude test to
avoid regressing in the future.
Lowimportance, so it doesn't pollute a normal build output (eg. for Blazor)