-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
translator build broken -- not found: value JuliaCompiler #1127
Comments
Yeah, this is the result of a hasty merge of kaitai-io/kaitai_struct_tests#126 by @GreyCat. Since that PR contains the addition of Julia to the KST translator, it relies on having support for Julia in the compiler (kaitai-io/kaitai_struct_compiler#305), which hasn't been merged yet (thank goodness because I'd like to properly review it before merging, but unfortunately I don't have time for that right now). So this is kind of a zombie state that we shouldn't have gotten into. For the time being, just disable the diff --git i/translator/src/main/scala/io/kaitai/struct/testtranslator/Main.scala w/translator/src/main/scala/io/kaitai/struct/testtranslator/Main.scala
index be8dda37..9b8d33fb 100644
--- i/translator/src/main/scala/io/kaitai/struct/testtranslator/Main.scala
+++ w/translator/src/main/scala/io/kaitai/struct/testtranslator/Main.scala
@@ -21,7 +21,7 @@ object Main extends App {
"go",
"java",
"javascript",
- "julia",
+ // "julia",
"lua",
"nim",
"perl",
diff --git i/translator/src/main/scala/io/kaitai/struct/testtranslator/TestTranslator.scala w/translator/src/main/scala/io/kaitai/struct/testtranslator/TestTranslator.scala
index 3a0cc1e8..89d333f0 100644
--- i/translator/src/main/scala/io/kaitai/struct/testtranslator/TestTranslator.scala
+++ w/translator/src/main/scala/io/kaitai/struct/testtranslator/TestTranslator.scala
@@ -117,7 +117,7 @@ class TestTranslator(options: CLIOptions) {
case "go" => new GoSG(testSpec, provider)
case "java" => new JavaSG(testSpec, provider)
case "javascript" => new JavaScriptSG(testSpec, provider)
- case "julia" => new JuliaSG(testSpec, provider)
+ // case "julia" => new JuliaSG(testSpec, provider)
case "lua" => new LuaSG(testSpec, provider)
case "nim" => new NimSG(testSpec, provider)
case "perl" => new PerlSG(testSpec, provider) ... and remove $ rm -v translator/src/main/scala/io/kaitai/struct/testtranslator/specgenerators/JuliaSG.scala
removed 'translator/src/main/scala/io/kaitai/struct/testtranslator/specgenerators/JuliaSG.scala' We should probably revert kaitai-io/kaitai_struct_tests#126 and once the compiler PR has been reviewed and merged, merge kaitai-io/kaitai_struct_tests#127 (which currently addresses some of my post-merge review comments, so it would become a full remake of kaitai-io/kaitai_struct_tests#126). |
Yes, of course I deleted the problem code locally. Issue is to inform you about the situation. |
Well, this remark sounded like you didn't know what happened:
... so here you go. |
I tried to build tests for kaitai-io/kaitai_struct_compiler#288, but building translator failed with error:
(
./build-test
here from kaitai-io/kaitai_struct_tests#112, it is just)
Search for
JuliaCompiler
returns results only in this repo:https://github.com/search?q=org%3Akaitai-io+JuliaCompiler&type=code
The text was updated successfully, but these errors were encountered: