Skip to content

Commit

Permalink
Native images are 'EE' if the Stage1 distribution includes SubstrateV…
Browse files Browse the repository at this point in the history
…M EE.

Since GR-31827, the final image might not include SubstrateVM even when
the Stage1 distribution uses it to build native images.
  • Loading branch information
ansalond committed Jun 27, 2022
1 parent b93ed83 commit a779fe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vm/mx.vm/mx_vm_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ def runAndReturnStdOut(self, benchmarks, bmSuiteArgs):
if isinstance(vm, mx_benchmark.GuestVm):
host_vm = vm.host_vm()
assert host_vm
name = 'graalvm-ee' if mx_sdk_vm_impl.has_component('svmee') else 'graalvm-ce'
name = 'graalvm-ee' if mx_sdk_vm_impl.has_component('svmee', stage1=True) else 'graalvm-ce'
dims = {
# the vm and host-vm fields are hardcoded to one of the accepted names of the field
"vm": name,
Expand Down

0 comments on commit a779fe6

Please sign in to comment.