-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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] Don't use _WasmDevel=true
when publishing
#87544
Conversation
…, since only wasm is using this currently
- this is the equivalent to `--verbose` - The default is "silent" behavior Cannot use `--verbose` because that conflicts with `dotnet run`.
.. which would be useful in debugging tests.
`_WasmDevel=true` causes the optimization flags to be `-O0`. - This *was* automatically set whenever `Configuration=Debug`, and `WasmBuildNative=true`, which is useful when relinking in inner loop. - But when publishing, and relinking/AOT, `-O0` results in larger output.
Tagging subscribers to 'arch-wasm': @lewing Issue Details
[wasm] host: Add
|
Author: | radical |
---|---|
Assignees: | radical |
Labels: |
|
Milestone: | - |
The |
/azp run runtime-wasm |
Azure Pipelines successfully started running 1 pipeline(s). |
perhaps |
This is for |
Could you please explain what are we making verbose ? |
Not much right now. The js engine exit code for example, will be shown in verbose, and the js engine invocation command line. |
@pavelsavara I'm merging this to get CI green. If we want to change the parameter name, then I can handle that in a follow up PR. |
_WasmDevel=true
causes the optimization flags to be-O0
.Configuration=Debug
, andWasmBuildNative=true
, which is useful when relinking in inner loop.-O0
results in larger output._WasmDevel
when publishing.[wasm] host: Add
--no-silent
command line parameter--verbose
Cannot use
--verbose
because that conflicts withdotnet run
.Also:
Fixes #87414 - side effect of the
_WasmDevel
change.