make/bsd/makefiles/fastdebug.make

Thu, 26 Sep 2013 10:25:02 -0400

author
hseigel
date
Thu, 26 Sep 2013 10:25:02 -0400
changeset 5784
190899198332
parent 5103
f9be75d21404
child 6876
710a3c8b516e
permissions
-rw-r--r--

7195622: CheckUnhandledOops has limited usefulness now
Summary: Enable CHECK_UNHANDLED_OOPS in fastdebug builds across all supported platforms.
Reviewed-by: coleenp, hseigel, dholmes, stefank, twisti, ihse, rdurbin
Contributed-by: lois.foltan@oracle.com

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

mercurial