# HG changeset patch # User erikj # Date 1475581311 -7200 # Node ID 1de8867db5a3e844d4edb6514fa0b47f903da799 # Parent 407480ec68720389d6c4b43547636ba55a27fb00 8166965: Some small java build tools are still running with big JVM configuration Reviewed-by: ihse diff -r 407480ec6872 -r 1de8867db5a3 make/Javadoc.gmk --- a/make/Javadoc.gmk Tue Oct 04 13:34:34 2016 +0200 +++ b/make/Javadoc.gmk Tue Oct 04 13:41:51 2016 +0200 @@ -1575,7 +1575,7 @@ $(JACCESSAPI_INDEX_HTML): $(JACCESSAPI_OPTIONS_FILE) $(JACCESSAPI_PACKAGES_FILE) $(COREAPI_INDEX_FILE) $(prep-javadoc) $(call JavadocSummary,$(JACCESSAPI_OPTIONS_FILE),$(JACCESSAPI_PACKAGES_FILE)) - $(JAVADOC_CMD) -d $(@D) \ + $(JAVADOC_CMD_SMALL) -d $(@D) \ @$(JACCESSAPI_OPTIONS_FILE) @$(JACCESSAPI_PACKAGES_FILE) # Create file with javadoc options in it diff -r 407480ec6872 -r 1de8867db5a3 make/MainSupport.gmk --- a/make/MainSupport.gmk Tue Oct 04 13:34:34 2016 +0200 +++ b/make/MainSupport.gmk Tue Oct 04 13:41:51 2016 +0200 @@ -137,7 +137,6 @@ define DeclareRecipeForModuleMakefile ifeq ($$($1_MULTIPLE_MAKEFILES), true) $2-$$($1_TARGET_SUFFIX): $2-$$($1_TARGET_SUFFIX)-$$(notdir $3) - $1 += $2-$$($1_TARGET_SUFFIX)-$$(notdir $3) $2-$$($1_TARGET_SUFFIX)-$$(notdir $3): else @@ -173,6 +172,12 @@ # Only declare recipes if there are makefiles to call ifneq ($$($1_$2_TOPDIRS), ) + # Add the top dir specific target to target list regardless of if recipe + # generation is disabled. + ifeq ($$($1_MULTIPLE_MAKEFILES), true) + $$(foreach d, $$($1_$2_TOPDIRS), \ + $$(eval $1 += $2-$$($1_TARGET_SUFFIX)-$$(notdir $$d))) + endif ifeq ($(NO_RECIPES),) $$(foreach d, $$($1_$2_TOPDIRS), \ $$(eval $$(call DeclareRecipeForModuleMakefile,$1,$2,$$d))) diff -r 407480ec6872 -r 1de8867db5a3 make/common/SetupJavaCompilers.gmk --- a/make/common/SetupJavaCompilers.gmk Tue Oct 04 13:34:34 2016 +0200 +++ b/make/common/SetupJavaCompilers.gmk Tue Oct 04 13:41:51 2016 +0200 @@ -38,7 +38,10 @@ # and the interim javac, to be run by the boot jdk. $(eval $(call SetupJavaCompiler,BOOT_JAVAC, \ JAVAC := $(JAVAC), \ - FLAGS := $(BOOT_JDK_SOURCETARGET) -XDignore.symbol.file=true -g \ + FLAGS := \ + $(JAVA_TOOL_FLAGS_SMALL) \ + $(BOOT_JDK_SOURCETARGET) \ + -XDignore.symbol.file=true -g \ -Xlint:all$(COMMA)-deprecation$(COMMA)-options -Werror, \ DISABLE_SJAVAC := true, \ ))