Skip to content

Commit

Permalink
Add support for linux-ppc64le target
Browse files Browse the repository at this point in the history
  • Loading branch information
alhad-deshpande committed Nov 7, 2022
1 parent d2ac7fd commit 0772291
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions gen_lib_nuspecs/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ XmlWriter f

write_nuspec_file_entry_native_linux(lib, "mips64", "linux-mips64", f);
write_nuspec_file_entry_native_linux(lib, "s390x", "linux-s390x", f);
write_nuspec_file_entry_native_linux(lib, "ppc64le", "linux-ppc64le", f);

write_nuspec_file_entry_native_wasm(lib, TFM.NET60, f);
write_nuspec_file_entry_native_wasm(lib, TFM.NET70, f);
Expand Down Expand Up @@ -692,6 +693,7 @@ private static void gen_nuget_props(string dest, WhichLib lib)
write_nuget_prop_item("linux-x64", lib, f);
write_nuget_prop_item("linux-mips64", lib, f);
write_nuget_prop_item("linux-s390x", lib, f);
write_nuget_prop_item("linux-ppc64le", lib, f);
f.WriteEndElement(); // PropertyGroup

f.WriteEndElement(); // Project
Expand Down

0 comments on commit 0772291

Please sign in to comment.