Skip to content

Commit 17752d3

Browse files
committed
Always use the fallback runtime for the minimal jvm env
1 parent 0948750 commit 17752d3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

mx.graalpython/jvm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
DYNAMIC_IMPORTS=/tools
22
BUILD_TARGETS=GRAALPY_JVM_STANDALONE
3+
EXCLUDE_TRUFFLE_RUNTIME=true

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ def get_jdk():
248248

249249
# Called from suite.py
250250
def graalpy_standalone_deps():
251-
deps = mx_truffle.resolve_truffle_dist_names()
251+
include_truffle_runtime = not os.environ.get("EXCLUDE_TRUFFLE_RUNTIME")
252+
deps = mx_truffle.resolve_truffle_dist_names(use_optimized_runtime=include_truffle_runtime)
252253
return deps
253254

254255

0 commit comments

Comments
 (0)