From 62b17c683477a123b5806dbc24a10b7dc4a9f9cf Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Sun, 20 Oct 2024 20:14:29 +0200 Subject: [PATCH] Update `patched_native_image()` for 24.1.1 --- mx.trufflesqueak/mx_trufflesqueak.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/mx.trufflesqueak/mx_trufflesqueak.py b/mx.trufflesqueak/mx_trufflesqueak.py index cba3f1c5d..55ab3cdac 100644 --- a/mx.trufflesqueak/mx_trufflesqueak.py +++ b/mx.trufflesqueak/mx_trufflesqueak.py @@ -179,13 +179,9 @@ def patched_init(self, *args, **kw_args): def _patch_svm_support_native_image(): native_image_original = mx_sdk_vm_impl.SvmSupport.native_image - def patched_native_image( - self, build_args, output_file, out=None, err=None, find_bad_strings=False - ): + def patched_native_image(self, build_args, output_file, out=None, err=None): if "smalltalkvm" not in output_file: - return native_image_original( - self, build_args, output_file, out, err, find_bad_strings - ) + return native_image_original(self, build_args, output_file, out, err) is_oracle_graalvm = False extra_graalvm_home = os.getenv("EXTRA_GRAALVM_HOME") if extra_graalvm_home: