Skip to content

Commit d82ba53

Browse files
committed
[GR-15096] Fix: Remove unnecessary arguments.
PullRequest: graalpython/484
2 parents 312d87d + c9be73f commit d82ba53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mx.graalpython/mx_graalpython_benchmark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,9 @@ def run(self, cwd, args):
220220
dists.append('SULONG')
221221
if mx.suite("sulong-managed", fatalIfMissing=False):
222222
dists.append('SULONG_MANAGED')
223-
extra_polyglot_args += ["--experimental-options", mx_subst.path_substitutions.substitute('--llvm.libraryPath=<path:SULONG_MANAGED_LIBS>')]
223+
extra_polyglot_args += ["--experimental-options"]
224224
else:
225-
extra_polyglot_args += ["--experimental-options", mx_subst.path_substitutions.substitute('--llvm.libraryPath=<path:SULONG_LIBS>')]
225+
extra_polyglot_args += ["--experimental-options"]
226226

227227

228228
vm_args = mx.get_runtime_jvm_args(dists, cp_suffix=self._cp_suffix, cp_prefix=self._cp_prefix)

0 commit comments

Comments
 (0)