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 2e89e8c commit e37702eCopy full SHA for e37702e
substratevm/mx.substratevm/mx_substratevm.py
@@ -427,7 +427,8 @@ def svm_gate_body(args, tasks):
427
if t:
428
if mx.is_windows():
429
mx.warn('layereddebuginfotest does not work on Windows')
430
- else:
+ # Running debuginfotest with layers does not work for static builds
431
+ elif '--static' not in args.extra_image_builder_arguments:
432
with native_image_context(IMAGE_ASSERTION_FLAGS) as native_image:
433
layereddebuginfotest(['--output-path', svmbuild_dir()] + args.extra_image_builder_arguments)
434
0 commit comments