8214557: Filter out VM flags which don't affect AOT code generation

Reviewed-by: kvn, erikj
This commit is contained in:
Ekaterina Pavlova 2018-11-30 23:46:20 -08:00
parent 389a110e56
commit 97bccb2053

View File

@ -135,9 +135,11 @@ define SetupAotModuleBody
$1_LD := $$(LD)
endif
# Create jaotc flags.
# VM flags which don't affect AOT code generation are filtered out: -Xcomp, -XX:+-TieredCompilation
$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) \
#