< prev index next >

make/RunTests.gmk

Print this page

        

@@ -133,13 +133,15 @@
     $1_LD := $$(addsuffix $$(EXE_SUFFIX), $$(filter-out $$(FIXPATH), $$(LD)))
   else
     $1_LD := $$(LD)
   endif
 
+  # Create jaotc flags.
+  # Some VM flags which don't affect AOT code generation are filtered out.
   $1_JAOTC_OPTS := \
       -J-Xmx4g --info \
-      $$(addprefix -J, $$($1_VM_OPTIONS)) \
+      $$(addprefix -J, $$(filter-out -Xcomp %TieredCompilation, $$($1_VM_OPTIONS))) \
       $$(addprefix --compile-commands$(SPACE), $$($1_AOT_CCLIST)) \
       --linker-path $$($1_LD) \
       #
 
   ifneq ($$(filter -ea, $$($1_VM_OPTIONS)), )
< prev index next >