Skip to content

Commit

Permalink
chore: Disable linker on profile generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed May 15, 2023
1 parent fb61db9 commit 199f0d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
<WasmShellMonoRuntimeExecutionMode Condition="'$(UseAOT)'=='true'">InterpreterAndAOT</WasmShellMonoRuntimeExecutionMode>
<WasmShellEnableEmccProfiling>true</WasmShellEnableEmccProfiling>
<WasmShellGenerateAOTProfile>true</WasmShellGenerateAOTProfile>

<!-- Linker is disabled when generating a profile https://github.com/unoplatform/Uno.Wasm.Bootstrap/issues/724 -->
<WasmShellILLinkerEnabled>false</WasmShellILLinkerEnabled>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
<WasmShellMonoRuntimeExecutionMode Condition="'$(UseAOT)'=='true'">InterpreterAndAOT</WasmShellMonoRuntimeExecutionMode>
<WasmShellEnableEmccProfiling>true</WasmShellEnableEmccProfiling>
<WasmShellGenerateAOTProfile>true</WasmShellGenerateAOTProfile>

<!-- Linker is disabled when generating a profile https://github.com/unoplatform/Uno.Wasm.Bootstrap/issues/724 -->
<WasmShellILLinkerEnabled>false</WasmShellILLinkerEnabled>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 199f0d2

Please sign in to comment.