File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 4
4
" Jsonnet files should not include this file directly but use ci/common.jsonnet instead."
5
5
],
6
6
7
- "mx_version" : " 7.45.3 " ,
7
+ "mx_version" : " 7.49.0 " ,
8
8
9
9
"COMMENT.jdks" : " When adding or removing JDKs keep in sync with JDKs in ci/common.jsonnet" ,
10
10
"jdks" : {
Original file line number Diff line number Diff line change @@ -419,7 +419,8 @@ def get_build_args(self):
419
419
experimental_build_args += ['-H:CCompilerOption=' + e for e in self .args .alt_cflags .split ()]
420
420
if self .args .alt_ldflags is not None :
421
421
experimental_build_args += ['-H:NativeLinkerOption=' + e for e in self .args .alt_ldflags .split ()]
422
- build_args += mx .get_runtime_jvm_args (self .subject .deps ) + [
422
+ classpath_and_modulepath = mx .get_runtime_jvm_args (self .subject .deps , include_system_properties = False )
423
+ build_args += classpath_and_modulepath + [
423
424
'--no-fallback' ,
424
425
'-march=compatibility' , # Target maximum portability
425
426
'--parallelism=' + str (self .parallelism ),
Original file line number Diff line number Diff line change 39
39
# SOFTWARE.
40
40
#
41
41
suite = {
42
- "mxversion" : "7.45 .0" ,
42
+ "mxversion" : "7.49 .0" ,
43
43
"name" : "sdk" ,
44
44
"version" : "25.0.0" ,
45
45
"release" : False ,
You can’t perform that action at this time.
0 commit comments