Skip to content

Commit

Permalink
Merge pull request #525 from alhad-deshpande/master
Browse files Browse the repository at this point in the history
Add support for linux-ppc64le target
  • Loading branch information
ericsink authored Nov 9, 2022
2 parents 48346e1 + 0772291 commit 7e077d7
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 7e077d7

Please sign in to comment.