source: trunk/openjdk/hotspot/make/linux/makefiles/fastdebug.make

Last change on this file was 278, checked in by dmik, 14 years ago

trunk: Merged in openjdk6 b22 from branches/vendor/oracle.

File size: 2.3 KB
Line 
1#
2# Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved.
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
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
7# published by the Free Software Foundation.
8#
9# This code is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12# version 2 for more details (a copy is included in the LICENSE file that
13# accompanied this code).
14#
15# You should have received a copy of the GNU General Public License version
16# 2 along with this work; if not, write to the Free Software Foundation,
17# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18#
19# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20# or visit www.oracle.com if you need additional information or have any
21# questions.
22#
23#
24
25# Sets make macros for making debug version of VM
26
27# Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make
28OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS)
29OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@))
30
31# (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files)
32
33ifeq ($(BUILDARCH), ia64)
34 # Bug in GCC, causes hang. -O1 will override the -O3 specified earlier
35 OPT_CFLAGS/callGenerator.o += -O1
36 OPT_CFLAGS/ciTypeFlow.o += -O1
37 OPT_CFLAGS/compile.o += -O1
38 OPT_CFLAGS/concurrentMarkSweepGeneration.o += -O1
39 OPT_CFLAGS/doCall.o += -O1
40 OPT_CFLAGS/generateOopMap.o += -O1
41 OPT_CFLAGS/generateOptoStub.o += -O1
42 OPT_CFLAGS/graphKit.o += -O1
43 OPT_CFLAGS/instanceKlass.o += -O1
44 OPT_CFLAGS/interpreterRT_ia64.o += -O1
45 OPT_CFLAGS/output.o += -O1
46 OPT_CFLAGS/parse1.o += -O1
47 OPT_CFLAGS/runtime.o += -O1
48 OPT_CFLAGS/synchronizer.o += -O1
49endif
50
51
52# If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings
53CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE)
54
55# Set the environment variable HOTSPARC_GENERIC to "true"
56# to inhibit the effect of the previous line on CFLAGS.
57
58# Linker mapfile
59MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
60
61G_SUFFIX = _g
62VERSION = optimized
63SYSDEFS += -DASSERT -DFASTDEBUG
64PICFLAGS = DEFAULT
Note: See TracBrowser for help on using the repository browser.