comparison make/linux/makefiles/gcc.make @ 4033:95009f678859

7106766: Move the precompiled header from the src/share/vm directory Summary: Moved precompiled.hpp to src/share/vm/precompiled Reviewed-by: coleenp, dholmes Contributed-by: rbackman <rickard.backman@oracle.com>
author brutisso
date Tue, 01 Nov 2011 13:44:40 +0100
parents da0999c4b733
children f4414323345f
comparison
equal deleted inserted replaced
4032:6da94c5a6746 4033:95009f678859
50 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0" 50 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
51 # Allow the user to turn off precompiled headers from the command line. 51 # Allow the user to turn off precompiled headers from the command line.
52 ifneq ($(USE_PRECOMPILED_HEADER),0) 52 ifneq ($(USE_PRECOMPILED_HEADER),0)
53 USE_PRECOMPILED_HEADER=1 53 USE_PRECOMPILED_HEADER=1
54 PRECOMPILED_HEADER_DIR=. 54 PRECOMPILED_HEADER_DIR=.
55 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled.hpp 55 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
56 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch 56 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
57 endif 57 endif
58 endif 58 endif
59 59
60 60