mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 09:40:35 -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)
31 lines
574 B
Groovy
31 lines
574 B
Groovy
--- GPL/DemanglerGnu/build.gradle.orig 2019-10-23 20:54:54 UTC
|
|
+++ GPL/DemanglerGnu/build.gradle
|
|
@@ -32,6 +32,10 @@ model {
|
|
architecture 'x86_64'
|
|
operatingSystem 'osx'
|
|
}
|
|
+ freebsd64 {
|
|
+ architecture 'x86_64'
|
|
+ operatingSystem 'freebsd'
|
|
+ }
|
|
}
|
|
}
|
|
|
|
@@ -72,6 +76,7 @@ model {
|
|
targetPlatform "win64"
|
|
targetPlatform "linux64"
|
|
targetPlatform "osx64"
|
|
+ targetPlatform "freebsd64"
|
|
sources {
|
|
c {
|
|
source {
|
|
@@ -88,6 +93,9 @@ model {
|
|
}
|
|
|
|
model {
|
|
+ toolChains {
|
|
+ clang(Clang)
|
|
+ }
|
|
binaries {
|
|
all{ b ->
|
|
if (toolChain in Gcc) {
|