Skip to content

Commit

Permalink
fix invariant linking error (#49492)
Browse files Browse the repository at this point in the history
Disable the conditional inclusion to fix #48847 until we have a solution.
  • Loading branch information
lewing authored Mar 11, 2021
1 parent 2796d17 commit 1d12854
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mono/wasm/build/WasmApp.targets
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,12 @@
<_WasmRuntimePackNativeLibs Include="libSystem.Native.a"/>
<_WasmRuntimePackNativeLibs Include="libSystem.IO.Compression.Native.a"/>
<_WasmRuntimePackNativeLibs Include="libmono-profiler-aot.a"/>
<!-- these can't conditional until we've solved the linking issue
<_WasmRuntimePackNativeLibs Include="libicuuc.a" Condition="'$(InvariantGlobalization)' != 'true'" />
<_WasmRuntimePackNativeLibs Include="libicui18n.a" Condition="'$(InvariantGlobalization)' != 'true'" />
-->
<_WasmRuntimePackNativeLibs Include="libicuuc.a" />
<_WasmRuntimePackNativeLibs Include="libicui18n.a" />
<_WasmObjects Include="@(_WasmRuntimePackNativeLibs->'$(MicrosoftNetCoreAppRuntimePackRidDir)\native\%(FileName)%(Extension)')" />

<_WasmObjects Include="$(_WasmIntermediateOutputPath)driver.o"/>
Expand Down

0 comments on commit 1d12854

Please sign in to comment.