GP-6126: Ghidra now builds on Windows on ARM (requires Gradle 9.2 or

later)
This commit is contained in:
Ryan Kurtz
2025-11-17 13:25:01 -05:00
parent 0e3f1815c9
commit 7502e9f41d
4 changed files with 8 additions and 2 deletions

View File

@@ -77,6 +77,7 @@ model {
//
demangler_gnu_v2_41(NativeExecutableSpec) {
targetPlatform "win_x86_64"
targetPlatform "win_arm_64"
targetPlatform "linux_x86_64"
targetPlatform "linux_arm_64"
targetPlatform "mac_x86_64"
@@ -100,6 +101,7 @@ model {
//
demangler_gnu_v2_24(NativeExecutableSpec) {
targetPlatform "win_x86_64"
targetPlatform "win_arm_64"
targetPlatform "linux_x86_64"
targetPlatform "linux_arm_64"
targetPlatform "mac_x86_64"

View File

@@ -21,6 +21,7 @@
project.ext.PLATFORMS = [
[name: "win_x86_32", os: "windows", arch: "x86"],
[name: "win_x86_64", os: "windows", arch: "x86_64"],
[name: "win_arm_64", os: "windows", arch: "arm64"],
[name: "linux_x86_64", os: "linux", arch: "x86_64"],
[name: "linux_arm_64", os: "linux", arch: "arm64"],
[name: "mac_x86_64", os: "osx", arch: "x86_64"],

View File

@@ -38,6 +38,7 @@ model {
// these tell gradle for which platforms to build a decompiler executable.
targetPlatform "win_x86_64"
targetPlatform "win_arm_64"
targetPlatform "linux_x86_64"
targetPlatform "linux_arm_64"
targetPlatform "mac_x86_64"
@@ -148,6 +149,7 @@ model {
sleigh(NativeExecutableSpec) {
targetPlatform "win_x86_64"
targetPlatform "win_arm_64"
targetPlatform "linux_x86_64"
targetPlatform "linux_arm_64"
targetPlatform "mac_x86_64"

View File

@@ -29,6 +29,7 @@ model {
baseName "lzfse"
targetPlatform "win_x86_64"
targetPlatform "win_arm_64"
targetPlatform "linux_x86_64"
targetPlatform "linux_arm_64"
targetPlatform "mac_x86_64"