comparison make/bsd/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 436b4a3231bf
children f4414323345f
comparison
equal deleted inserted replaced
4032:6da94c5a6746 4033:95009f678859
86 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0" 86 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
87 # Allow the user to turn off precompiled headers from the command line. 87 # Allow the user to turn off precompiled headers from the command line.
88 ifneq ($(USE_PRECOMPILED_HEADER),0) 88 ifneq ($(USE_PRECOMPILED_HEADER),0)
89 USE_PRECOMPILED_HEADER=1 89 USE_PRECOMPILED_HEADER=1
90 PRECOMPILED_HEADER_DIR=. 90 PRECOMPILED_HEADER_DIR=.
91 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled.hpp 91 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
92 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch 92 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
93 endif 93 endif
94 endif 94 endif
95 95
96 96