8037281: Improve CacheFind and enable on all platforms
Reviewed-by: tbell, ihse
This commit is contained in:
parent
6a81209e6f
commit
afa5b5c349
@ -32,7 +32,7 @@ include NativeCompilation.gmk
|
||||
# Setup the java compilers for the JDK build.
|
||||
include Setup.gmk
|
||||
|
||||
# Prepare the find cache. Only used on windows.
|
||||
# Prepare the find cache.
|
||||
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/src/share/bin))
|
||||
|
||||
# Build tools
|
||||
|
@ -35,7 +35,7 @@ include Setup.gmk
|
||||
# Copy files (can now depend on $(COPY_FILES))
|
||||
include CopyFiles.gmk
|
||||
|
||||
# Prepare the find cache. Only used if running on windows.
|
||||
# Prepare the find cache.
|
||||
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/src))
|
||||
|
||||
# Build tools
|
||||
|
@ -30,9 +30,6 @@ include Setup.gmk
|
||||
|
||||
default: all
|
||||
|
||||
# Prepare the find cache. Only used if running on windows.
|
||||
$(eval $(call FillCacheFind, $(JDK_OUTPUTDIR)/classes))
|
||||
|
||||
include Tools.gmk
|
||||
|
||||
include Profiles.gmk
|
||||
|
@ -30,7 +30,7 @@ include Setup.gmk
|
||||
|
||||
default: images
|
||||
|
||||
# Prepare the find cache. Only used if running on windows.
|
||||
# Prepare the find cache.
|
||||
$(eval $(call FillCacheFind, \
|
||||
$(wildcard $(JDK_OUTPUTDIR)/bin \
|
||||
$(JDK_OUTPUTDIR)/lib \
|
||||
|
@ -23,7 +23,7 @@
|
||||
# questions.
|
||||
#
|
||||
|
||||
# Cache all finds needed for this file. Only used on windows.
|
||||
# Cache all finds needed for this file.
|
||||
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/make/src/classes))
|
||||
|
||||
# The exception handling of swing beaninfo which have the own tool directory
|
||||
|
@ -23,8 +23,10 @@
|
||||
# questions.
|
||||
#
|
||||
|
||||
# Prepare the find cache. This is only used on windows.
|
||||
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/src/share/classes $(JDK_TOPDIR)/src/windows/classes))
|
||||
# Prepare the find cache.
|
||||
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/src/share/classes \
|
||||
$(JDK_TOPDIR)/src/windows/classes \
|
||||
$(JDK_TOPDIR)/src/macosx/classes))
|
||||
|
||||
# All .properties files to be compiled are appended to this variable.
|
||||
ALL_COMPILED_PROPSOURCES :=
|
||||
|
Loading…
x
Reference in New Issue
Block a user