comparison make/linux/makefiles/vm.make @ 4890:c77d473e71f7

7132779: build-infra merge: Enable ccache to work for most developer builds. Summary: When a build number is not specified, the JRE_RELEASE_VERSION define contains a date and timestamp. Thus ccache cannot cache the object files for longer than a minute since the define is passed to the compilation of all source files. This change passes JRE_RELEASE_VERSION only to vm_version.cpp and adds a function jre_release_version() to Abstract_VM_Version. This allows all other source files to be ccached. Reviewed-by: ohair, rottenha Contributed-by: fredrik.ohrstrom@oracle.com
author ohrstrom
date Tue, 31 Jan 2012 13:12:39 +0100
parents 94ec88ca68e2
children 719f7007c8e8
comparison
equal deleted inserted replaced
4889:869be5c8882e 4890:c77d473e71f7
93 ${INCLUDES} \ 93 ${INCLUDES} \
94 ${BUILD_VERSION} \ 94 ${BUILD_VERSION} \
95 ${BUILD_TARGET} \ 95 ${BUILD_TARGET} \
96 ${BUILD_USER} \ 96 ${BUILD_USER} \
97 ${HS_LIB_ARCH} \ 97 ${HS_LIB_ARCH} \
98 ${JRE_VERSION} \
99 ${VM_DISTRO} 98 ${VM_DISTRO}
99
100 # This is VERY important! The version define must only be supplied to vm_version.o
101 # If not, ccache will not re-use the cache at all, since the version string might contain
102 # a time and date.
103 vm_version.o: CPPFLAGS += ${JRE_VERSION}
100 104
101 ifndef JAVASE_EMBEDDED 105 ifndef JAVASE_EMBEDDED
102 CFLAGS += -DINCLUDE_TRACE 106 CFLAGS += -DINCLUDE_TRACE
103 endif 107 endif
104 108