File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/reporting Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -2180,6 +2180,7 @@ def get_build_args(self):
21802180 build_args = [
21812181 '--macro:' + GraalVmNativeProperties .macro_name (self .subject .native_image_config ),
21822182 '-H:NumberOfThreads=' + str (self .parallelism ),
2183+ '-H:+BuildOutputPrefix' ,
21832184 ]
21842185 if self .subject .native_image_config .is_polyglot :
21852186 build_args += ["--macro:truffle" , "--language:all" ]
Original file line number Diff line number Diff line change @@ -134,12 +134,7 @@ public ProgressReporter(OptionValues options) {
134134 if (isEnabled ) {
135135 Timer .disablePrinting ();
136136 }
137- if (SubstrateOptions .BuildOutputPrefix .hasBeenSet (options )) {
138- usePrefix = SubstrateOptions .BuildOutputPrefix .getValue (options );
139- } else {
140- // Drop mx detection after enabling prefix in gates (GR-35238).
141- usePrefix = IS_CI && System .getenv ("MX_HOME" ) != null ;
142- }
137+ usePrefix = SubstrateOptions .BuildOutputPrefix .getValue (options );
143138 boolean enableColors = !IS_CI ;
144139 if (SubstrateOptions .BuildOutputColorful .hasBeenSet (options )) {
145140 enableColors = SubstrateOptions .BuildOutputColorful .getValue (options );
You can’t perform that action at this time.
0 commit comments