I use Gradle 2.3 on Windows to build native binaries.
Building the libraries (gradle build…) results to:
Fatal error: can’t create C:…longPath…\gradle_test\components\myPackage\build\objs\myPackageStaticLibrary\linux_armRelease\myPackageCpp\emj390qohau4ysrcdfcnhmqes\my_testcomponent.o: No such file or directory
The error occures, because the complete path inclusive the name of the object file is too long. (Length of 259 Characters is ok - 260 Characters and more evoke the error).
Is it possible for gradle to use unicode paths when the compiler is called (e.g. -o \\?\C:\…) or is there any other possibility to solve the problem ?
Best regards
Christian