comparison make/solaris/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 c760f78e0a53
children f4414323345f
comparison
equal deleted inserted replaced
4032:6da94c5a6746 4033:95009f678859
1 # 1 #
2 # Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. 2 # Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 # 4 #
5 # This code is free software; you can redistribute it and/or modify it 5 # This code is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License version 2 only, as 6 # under the terms of the GNU General Public License version 2 only, as
7 # published by the Free Software Foundation. 7 # published by the Free Software Foundation.
49 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0" 49 ifneq "$(shell expr \( $(CC_VER_MAJOR) \> 3 \) \| \( \( $(CC_VER_MAJOR) = 3 \) \& \( $(CC_VER_MINOR) \>= 4 \) \))" "0"
50 # Allow the user to turn off precompiled headers from the command line. 50 # Allow the user to turn off precompiled headers from the command line.
51 ifneq ($(USE_PRECOMPILED_HEADER),0) 51 ifneq ($(USE_PRECOMPILED_HEADER),0)
52 USE_PRECOMPILED_HEADER=1 52 USE_PRECOMPILED_HEADER=1
53 PRECOMPILED_HEADER_DIR=. 53 PRECOMPILED_HEADER_DIR=.
54 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled.hpp 54 PRECOMPILED_HEADER_SRC=$(GAMMADIR)/src/share/vm/precompiled/precompiled.hpp
55 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch 55 PRECOMPILED_HEADER=$(PRECOMPILED_HEADER_DIR)/precompiled.hpp.gch
56 endif 56 endif
57 endif 57 endif
58 58
59 59