diff options
author | Eduardo Julian | 2022-03-16 16:44:40 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-16 16:44:40 -0400 |
commit | 49387dbbf08a9b06b815a662d117c7aa37120482 (patch) | |
tree | f9be901f65271f0a4a8a331f4aadc3ff84099c9f /stdlib/source/program | |
parent | bf53ee92fc3c33a4885aa227e55d24f7ba3cb2c4 (diff) |
JVM interop now allows importing inherited virtual/interface methods.
Diffstat (limited to 'stdlib/source/program')
-rw-r--r-- | stdlib/source/program/aedifex/command/build.lux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/source/program/aedifex/command/build.lux b/stdlib/source/program/aedifex/command/build.lux index f55d026a3..ed65518e4 100644 --- a/stdlib/source/program/aedifex/command/build.lux +++ b/stdlib/source/program/aedifex/command/build.lux @@ -270,7 +270,8 @@ _ (revised ///runtime.#parameters (|>> (list& "-cp" (..jvm_class_path host_dependencies) - "--add-opens" "java.base/java.lang=ALL-UNNAMED")) + "--add-opens" "java.base/java.lang=ALL-UNNAMED" + "-Xss16m")) runtime))) (def: .public (do! console program fs shell resolution) |