Skip to content

Commit

Permalink
Automatic merge of master into galahad
Browse files Browse the repository at this point in the history
  • Loading branch information
OracleLabsAutomation committed Oct 31, 2024
2 parents d32922f + 2537416 commit a1bbe24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions substratevm/mx.substratevm/mx_substratevm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1265,6 +1265,9 @@ def _native_image_launcher_extra_jvm_args():
res = [f'-XX:{max_heap_size_flag}']
if not mx_sdk_vm.jdk_enables_jvmci_by_default(get_jdk()):
res.extend(['-XX:+UnlockExperimentalVMOptions', '-XX:+EnableJVMCI'])
# Graal should not be used as the JIT compiler since SVM specific compiler extensions
# are put on the module path which can cause problems when running Graal as a HotSpot JIT.
res.append('-XX:-UseJVMCICompiler')
return res

driver_build_args = [
Expand Down

0 comments on commit a1bbe24

Please sign in to comment.