From fc0885bce303c13baaefba3265f23783d2f98058 Mon Sep 17 00:00:00 2001 From: Foivos Zakkak Date: Thu, 24 Oct 2024 11:53:42 +0300 Subject: [PATCH] Exclude svmt (Truffle Runtime SVM) component as well Since we explicitly don't build and ship core truffle packages there is no point in including this component. Required by https://github.com/oracle/graal/pull/9957 to resolve https://github.com/graalvm/mandrel/issues/805 but makes sense to merge regardless of whether https://github.com/graalvm/mandrel/issues/805 will end up being accepted or not. --- build.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.java b/build.java index b09d70c..9cc5f1b 100644 --- a/build.java +++ b/build.java @@ -1209,7 +1209,7 @@ static Function mxbuild( , javaHome.toString() , "--native-images=lib:native-image-agent,lib:native-image-diagnostics-agent" , "--components=ni" - , "--exclude-components=nju,svmnfi,svml,tflm" + , "--exclude-components=nju,svmnfi,svml,tflm,svmt" , options.disableDebuginfoStripping ? "--disable-debuginfo-stripping" : "" , "build" )