Build for Linux ARM32 (armhf) and ARM64 (aarch64) (#1382)

Co-authored-by: jp2masa <jp2masa@users.noreply.github.com>
This commit is contained in:
Matthew Leibowitz 2020-07-07 02:23:42 +02:00 committed by GitHub
commit a3472b0627
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 461 additions and 493 deletions

View file

@ -13,6 +13,9 @@ namespace NativeLibraryMiniTest {
static int Main() {
Console.WriteLine("Starting test...");
Console.WriteLine($"OS = {RuntimeInformation.OSDescription}");
Console.WriteLine($"OS Arch = {RuntimeInformation.OSArchitecture}");
Console.WriteLine($"Proc Arch = {RuntimeInformation.ProcessArchitecture}");
Console.WriteLine("Version test...");
Console.WriteLine($"sk_version_get_milestone() = {sk_version_get_milestone()}");
@ -49,7 +52,6 @@ namespace NativeLibraryMiniTest {
}
[DllImport(SKIA, CallingConvention = CallingConvention.Cdecl)]
[return: MarshalAs(UnmanagedType.LPStr)]
static extern void* sk_version_get_string();
[DllImport(SKIA, CallingConvention = CallingConvention.Cdecl)]