blob: b87232ba65dde547b088ad07660ded18abd33c1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- 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) {
|