From 15c188aee03f339184bdd5f92c2e12fdb20fbc27 Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Wed, 29 Jan 2020 14:07:47 +0100 Subject: [PATCH] Fix for aarch64 architecture --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1e69120..d0323d3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -40,7 +40,7 @@ val openrndrOs = if (project.hasProperty("targetPlatform")) { OperatingSystem.MAC_OS -> "macos" OperatingSystem.LINUX -> when(val h = DefaultNativePlatform("current").architecture.name) { "x86-64" -> "linux-x64" - "arm64" -> "linux-arm64" + "aarch64" -> "linux-arm64" else ->throw IllegalArgumentException("architecture not supported: $h") } else -> throw IllegalArgumentException("os not supported")