Skip to content

Commit

Permalink
chore: Adjust icall for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed May 29, 2024
1 parent d709735 commit e9f7355
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Uno.Wasm.Packager/packager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1846,9 +1846,12 @@ int Run (string[] args) {
ofiles += $" {a.o_path}";
}

if (!RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
ninja.WriteLine("build $builddir/icall-table.json: gen-runtime-icall-table");
}

if (link_icalls) {
ninja.WriteLine ("build $builddir/icall-table.json: gen-runtime-icall-table");

string icall_assemblies = "";
foreach (var a in assemblies.Where(a => a.culture is null)) {
Expand Down

0 comments on commit e9f7355

Please sign in to comment.