Konstantin Solomatov
Konstantin Solomatov
I got the same result: [kostik@kostik-laptop Projects]$ git clone https://github.com/google/j2cl.git Cloning into 'j2cl'... remote: Enumerating objects: 153, done. remote: Counting objects: 100% (153/153), done. remote: Compressing objects: 100% (107/107), done....
It went farther, the error is different now: ERROR: /home/kostik/.cache/bazel/_bazel_kostik/2a81219139f53d2833d3cdf6348d1cfd/external/bazel_tools/tools/jdk/BUILD:197:1: SkylarkAction external/bazel_tools/tools/jdk/platformclasspath.jar failed (Exit 1) Exception in thread "main" java.io.FileNotFoundException: external/embedded_jdk/jre/lib/ext/jfxrt.jar (No such file or directory) at java.util.zip.ZipFile.open(Native Method) at...
I am running on Fedora 29. I use open JDK 1.8.0. Here's the version string of bazel: Build label: 0.19.1- (@non-git) Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Mon Nov 12 16:31:12...
I installed javafx and accessibility parts of JDK and it seems to get better. But the error is different now: ERROR: /home/kostik/Projects/j2cl/transpiler/javatests/com/google/j2cl/transpiler/integration/box2d/BUILD:8:1: Compiling Java headers transpiler/javatests/com/google/j2cl/transpiler/integration/box2d/libbox2d_j2cl-hjar.jar (2 files) failed (Exit...
I run the following command: bazel test //transpiler/javatests/com/google/j2cl/transpiler/integration/... I don't have any additional bazelrc files.
Thanks for you help! It passed forward much further than it used to! Most of the tests passed. I understand that the difference between Google repo and what you have...
Here's the final message: Executed 201 out of 201 tests: 196 tests pass and 5 fail locally.
And where can I find this option. The only place where I found it is j2cl_application.bzl
I made the change, and the test failed. Here's the message: -> ERROR: G_testRunner not defined. Did you remember to goog.require('goog.testing.jsunit')? I got a resulting compiled_test_bin.js I create a simple...
If I search the resulting file, I can't find a declaration for AutoCloseable$impl: goog.module('java.lang.AutoCloseable$impl'); As far as I understand, it's a declaration of the module const AutoCloseable = goog.require('java.lang.AutoCloseable$impl'); I...