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 ac57bbc commit 1e1aa99Copy full SHA for 1e1aa99
mx.graalpython/mx_graalpython.py
@@ -254,6 +254,9 @@ def libpythonvm_build_args():
254
build_args = []
255
build_args += bytecode_dsl_build_args()
256
257
+ if os.environ.get("GITHUB_CI"):
258
+ build_args += ["-Ob"]
259
+
260
if graalos := ("musl" in mx_subst.path_substitutions.substitute("<multitarget_libc_selection>")):
261
build_args += ['-H:+GraalOS']
262
else:
@@ -326,7 +329,9 @@ def libpythonvm_build_args():
326
329
"-H:-UnlockExperimentalVMOptions",
327
330
]
328
331
332
+ print("[DEBUG] libpythonvm_build_args debug")
333
print(invert("Not using an automatically selected PGO profile"), file=sys.stderr)
334
+ print(f"[DEBUG] libpythonvm args: {build_args}")
335
return build_args
336
337
0 commit comments