我一直试图在Ubuntu14.04上构建openjfx,但是我收到了错误
gradle tasks
:buildSrc:clean
:buildSrc:generateGrammarSource
:buildSrc:compileJava
/home/nika/openjfx/rt/buildSrc/src/main/java/com/sun/scenario/effect/compiler/backend/sw/sse/SSEBackend.java:85: error: ')' expected
Comparator<Variable> c = (v0, v1) -> v0.getName().compareTo(v1.getName());
^
/home/nika/openjfx/rt/buildSrc/src/main/java/com/sun/scenario/effect/compiler/backend/sw/sse/SSEBackend.java:85: error: ';' expected
Comparator<Variable> c = (v0, v1) -> v0.getName().compareTo(v1.getName());
^
2 errors
:buildSrc:compileJava FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 5.334 secs有人知道如何在ubuntu14.04上构建openjfx吗?
发布于 2014-07-28 07:54:32
我发现了问题,下载最新版本的Gradle。Ubuntu的回购不能用于构建openjfx8。但是,下面的链接对于构建Openjfx很有帮助。
感谢H.Gomez为Obuildfacory :) ).
https://askubuntu.com/questions/500910
复制相似问题