Skip to content

Commit

Permalink
Add Linker arg to browser and wasm app targets (dotnet#107194)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewing authored and jtschuster committed Sep 17, 2024
1 parent af3093e commit e17192d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/mono/browser/build/BrowserWasmApp.targets
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@
<_EmccLinkStepArgs Include="$(EmccExtraLDFlags)" />

<_WasmLinkStepArgs Include="@(_EmccLinkStepArgs)" />
<_WasmLinkStepArgs Include="@(LinkerArg)" />
</ItemGroup>
</Target>

Expand Down
1 change: 1 addition & 0 deletions src/mono/wasi/build/WasiApp.targets
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@
<_WasiLinkStepArgs Include="-o &quot;$(_WasiOutputFileName.Replace('\', '/'))&quot;" />

<_WasmLinkStepArgs Include="@(_WasiLinkStepArgs)" />
<_WasmLinkStepArgs Include="@(LinkerArg)" />
</ItemGroup>
</Target>

Expand Down

0 comments on commit e17192d

Please sign in to comment.