make/linux/makefiles/fastdebug.make

Wed, 14 Oct 2020 17:44:48 +0800

author
aoqi
date
Wed, 14 Oct 2020 17:44:48 +0800
changeset 9931
fd44df5e3bc3
parent 6876
710a3c8b516e
permissions
-rw-r--r--

Merge

     1 #
     2 # Copyright (c) 1999, 2013, 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 #
    25 # Sets make macros for making debug version of VM
    27 # Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make
    28 OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS)
    29 OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@))
    31 # (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files)
    33 ifeq ($(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
    49 endif
    52 # If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings
    53 CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE)
    55 # Set the environment variable HOTSPARC_GENERIC to "true"
    56 # to inhibit the effect of the previous line on CFLAGS.
    58 # Linker mapfile
    59 MAPFILE = $(GAMMADIR)/make/linux/makefiles/mapfile-vers-debug
    61 VERSION = optimized
    62 SYSDEFS += -DASSERT -DCHECK_UNHANDLED_OOPS
    63 PICFLAGS = DEFAULT

mercurial