0

Is it possible to use GRADLE with Solaris Studio CC/cc compiler on SunOS.

bhardwajhp
  • 43
  • 1
  • 8

2 Answers2

0

I don't know which C compiler Solaris uses, but you have GCC and CLang that are supported by Gradle, see the doc

Edit: According to this documentation, mostly (there are exceptions) you can mix Solaris C compiler and GCC which would lead me to say that (mostly) Solaris C compiler is supported with Gradle

Adonis
  • 4,670
  • 3
  • 37
  • 57
  • Thanks, aware of the supported compilers, but our application uses Solaris native "CC" compiler, and i am not able to find any information about any plugin etc for integrating SunOS compiler with Gradle. – bhardwajhp Mar 08 '17 at 19:42
  • Solaris C compiler seems more or less gcc compatible so I'd think that gradle would (more or less) support Solaris C compiler – Adonis Mar 09 '17 at 22:19
  • Thanks Adonis, gradle has officially stopped support for Solaris OS's – bhardwajhp Aug 16 '17 at 20:57
0

Gradle allows addition of native tools toolchains :

https://github.com/gradle/gradle/blob/master/subprojects/docs/src/samples/native-binaries/tool-chains/build.gradle

bhardwajhp
  • 43
  • 1
  • 8