Skip to content

Commit 3e25204

Browse files
committed
minor cleanup
1 parent 66ac52c commit 3e25204

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def set_env(**environ):
295295

296296
def python_gvm(args=None):
297297
"Build and run a GraalVM graalpython launcher"
298-
with set_env(FORCE_BASH_LAUNCHERS="true", DISABLE_AGENT="true", DISABLE_LIBPOLYGLOT="true", DISABLE_POLYGLOT="true"):
298+
with set_env(FORCE_BASH_LAUNCHERS="true", DISABLE_AGENT="true", DISABLE_LIBPOLYGLOT="true", DISABLE_POLYGLOT="true", SKIP_LIBRARIES="native-image-agent,polyglot"):
299299
return _python_graalvm_launcher(args or [])
300300

301301

@@ -1187,6 +1187,7 @@ def build(self):
11871187
shutil.rmtree(cwd) # remove the temporary build files
11881188
# TODO: GR-18535
11891189
if mx.suite("sulong-managed", fatalIfMissing=False):
1190+
mx.log("Building C API project com.oracle.graal.python.cext managed ...")
11901191
mx.ensure_dir_exists(cwd)
11911192
rc = self.run(["--llvm.managed"] + args, cwd=cwd)
11921193
shutil.rmtree(cwd) # remove the temporary build files

0 commit comments

Comments
 (0)