Skip to content

Commit

Permalink
chore: Adjust packager
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed May 29, 2024
1 parent 11632fa commit d709735
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Uno.Wasm.Packager/packager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Mono.Options;
using Mono.Cecil.Cil;
using System.Diagnostics;
using System.Runtime.InteropServices;

//
// Google V8 style options:
Expand Down Expand Up @@ -1869,7 +1870,7 @@ int Run (string[] args) {

ninja.WriteLine ($"build $builddir/pinvoke-table.h: cpifdiff $builddir/pinvoke-table.h.tmp");

var icallTable = "__static_icalls__"; // RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? "__static_icalls__" : "$builddir/icall-table.json";
var icallTable = RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? "__static_icalls__" : "$builddir/icall-table.json";
ninja.WriteLine ($"build $builddir/pinvoke-table.h.tmp: gen-pinvoke-table {icallTable} {pinvoke_assemblies}");

if (is_netcore)
Expand Down

0 comments on commit d709735

Please sign in to comment.