mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 01:30:33 -04:00
- Now that openjdk11+ are registered in bsd.java.mk, drop the JDK11 and JDK12 options Changes: https://ghidra-sre.org/releaseNotes_9.1_final.html#9_1 PR: 239902 Submitted by: Tamas Szakaly <sghctoma@gmail.com> (maintainer)
32 lines
752 B
Groovy
32 lines
752 B
Groovy
--- GPL/GnuDisassembler/buildGdis.gradle.orig 2019-11-04 13:11:50 UTC
|
|
+++ GPL/GnuDisassembler/buildGdis.gradle
|
|
@@ -6,7 +6,7 @@
|
|
|
|
defaultTasks 'assemble'
|
|
|
|
-ext.supportedPlatforms = ['osx64', 'linux64']
|
|
+ext.supportedPlatforms = ['osx64', 'linux64', 'freebsd64']
|
|
|
|
ext.binutilsResource = new File("${binutilsLocation}/${binutils}.tar.bz2")
|
|
|
|
@@ -31,6 +31,10 @@ model {
|
|
architecture 'x86_64'
|
|
operatingSystem 'osx'
|
|
}
|
|
+ freebsd64 {
|
|
+ architecture 'x86_64'
|
|
+ operatingSystem 'freebsd'
|
|
+ }
|
|
}
|
|
|
|
components {
|
|
@@ -65,6 +69,9 @@ model {
|
|
}
|
|
tasks.compileGdisLinux64ExecutableGdisC {
|
|
dependsOn 'copyBinutilsArtifcats_linux64'
|
|
+ }
|
|
+ tasks.compileGdisFreeBSD64ExecutableGdisC {
|
|
+ dependsOn 'copyBinutilsArtifcats_freebsd64'
|
|
}
|
|
|
|
}
|