Re: Problem of compilation of OpenJFX

2019-10-10 Thread Kevin Rushforth
I don't see anything in your log that would explain the failure. What is the exact command to gradle that you are using? One thing to try is to use gradlew to run the exact version of gradle (5.3) that we use in production and do all of our testing with. Also, using the --info option might be

Re: Problem of compilation of OpenJFX

2019-10-10 Thread Vincent MOLLIERE
Here the log of the gradle with the task compileJslcJava : https://paste.ubuntu.com/p/5ZqZZJBSPF/ Here the log of the java-compiler-args.txt : https://paste.ubuntu.com/p/r72CMkFTHy/ Thank you for your help Le mer. 9 oct. 2019 à 17:51, Michael Ennen a écrit : > Can you paste the full build log

Re: Problem of compilation of OpenJFX

2019-10-09 Thread Michael Ennen
Can you paste the full build log somewhere (not inline on the mailing list)? On Wed, Oct 9, 2019 at 7:02 AM Vincent MOLLIERE wrote: > Thank you for you answer but its seems its using the 4.7.2. I pasted the > java-compiler-args.txt of the command generating the files : > -source > 11 > -target

Re: Problem of compilation of OpenJFX

2019-10-09 Thread Vincent MOLLIERE
Thank you for you answer but its seems its using the 4.7.2. I pasted the java-compiler-args.txt of the command generating the files : -source 11 -target 11 -d D:\\Git\\jfx\\modules\\javafx.graphics\\build\\classes\\java\\jslc -nowarn -g:source,lines,vars -sourcepath "" -proc:none -s

Re: Problem of compilation of OpenJFX

2019-10-09 Thread Kevin Rushforth
This class is generated by antlr during the build: modules/javafx.graphics/build/gensrc/antlr/com/sun/scenario/effect/compiler/JSLBaseVisitor.java You  may be using an old 3.x version of anltlr, although the build should download the latest antlr4 for you. Make sure that you have a clean repo

Problem of compilation of OpenJFX

2019-10-09 Thread Vincent MOLLIERE
Hello, I'm trying to build the latest version of OpenJFX on Windows and I have a compilation problem in JSLVisitor, it cannot find the import com.sun.scenario.effect.compiler.JSLBaseVisitor and neither do I. Where this file can be found/generated ? Thank you in advance for your help !