make/solaris/makefiles/optimized.make

Tue, 27 May 2008 09:47:18 -0700

author
ohair
date
Tue, 27 May 2008 09:47:18 -0700
changeset 593
a49545cab84a
parent 526
a294fd0c4b38
child 631
d1605aabd0a1
permissions
-rw-r--r--

6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles)
Summary: Allows for building with SS12, no longer requires SS11, warns if not SS11 for now. Once SS12 is validated and performance measurements look ok, SS12 will be the validated compiler.
Reviewed-by: sspitsyn, ikrylov

duke@435 1 #
duke@435 2 # Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
duke@435 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
duke@435 20 # CA 95054 USA or visit www.sun.com if you need additional information or
duke@435 21 # have any questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Sets make macros for making optimized version of Gamma VM
duke@435 26 # (This is the "product", not the "release" version.)
duke@435 27
duke@435 28 # Compiler specific OPT_CFLAGS are passed in from gcc.make, sparcWorks.make
duke@435 29 OPT_CFLAGS/DEFAULT= $(OPT_CFLAGS)
duke@435 30 OPT_CFLAGS/BYFILE = $(OPT_CFLAGS/$@)$(OPT_CFLAGS/DEFAULT$(OPT_CFLAGS/$@))
duke@435 31
duke@435 32 # (OPT_CFLAGS/SLOWER is also available, to alter compilation of buggy files)
ohair@593 33 ifeq ("${Platform_compiler}", "sparcWorks")
duke@435 34
ohair@593 35 # Problem with SS12 compiler, dtrace doesn't like the .o files (bug 6693876)
ohair@593 36 ifeq ($(COMPILER_REV),5.9)
ohair@593 37 # Not clear this workaround could be skipped in some cases.
ohair@593 38 OPT_CFLAGS/vmGCOperations.o = $(OPT_CFLAGS/SLOWER) -g
ohair@593 39 OPT_CFLAGS/java.o = $(OPT_CFLAGS/SLOWER) -g
ohair@593 40 OPT_CFLAGS/jni.o = $(OPT_CFLAGS/SLOWER) -g
ohair@593 41 endif
ohair@593 42
ohair@593 43 # Workaround SS11 bug 6345274 (all platforms) (Fixed in SS11 patch and SS12)
ohair@593 44 ifeq ($(COMPILER_REV),5.8))
duke@435 45 OPT_CFLAGS/ciTypeFlow.o = $(OPT_CFLAGS/O2)
ohair@593 46 endif # COMPILER_REV == 5.8
ohair@593 47
duke@435 48 endif # Platform_compiler == sparcWorks
duke@435 49
duke@435 50 # If you set HOTSPARC_GENERIC=yes, you disable all OPT_CFLAGS settings
duke@435 51 CFLAGS$(HOTSPARC_GENERIC) += $(OPT_CFLAGS/BYFILE)
duke@435 52
duke@435 53 # Linker mapfiles
duke@435 54 # NOTE: inclusion of nonproduct mapfile not necessary; read it for details
kamg@526 55 MAPFILE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers \
kamg@526 56 $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-nonproduct
duke@435 57
duke@435 58 # This mapfile is only needed when compiling with dtrace support,
duke@435 59 # and mustn't be otherwise.
kamg@526 60 MAPFILE_DTRACE = $(GAMMADIR)/make/solaris/makefiles/mapfile-vers-$(TYPE)
duke@435 61
duke@435 62 # Set the environment variable HOTSPARC_GENERIC to "true"
duke@435 63 # to inhibit the effect of the previous line on CFLAGS.
duke@435 64
duke@435 65 G_SUFFIX =
duke@435 66 VERSION = optimized

mercurial