We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0948750 commit 17752d3Copy full SHA for 17752d3
mx.graalpython/jvm
@@ -1,2 +1,3 @@
1
DYNAMIC_IMPORTS=/tools
2
BUILD_TARGETS=GRAALPY_JVM_STANDALONE
3
+EXCLUDE_TRUFFLE_RUNTIME=true
mx.graalpython/mx_graalpython.py
@@ -248,7 +248,8 @@ def get_jdk():
248
249
# Called from suite.py
250
def graalpy_standalone_deps():
251
- deps = mx_truffle.resolve_truffle_dist_names()
+ include_truffle_runtime = not os.environ.get("EXCLUDE_TRUFFLE_RUNTIME")
252
+ deps = mx_truffle.resolve_truffle_dist_names(use_optimized_runtime=include_truffle_runtime)
253
return deps
254
255
0 commit comments