make/solaris/makefiles/launcher.make

Wed, 09 Apr 2008 14:22:48 -0400

author
kamg
date
Wed, 09 Apr 2008 14:22:48 -0400
changeset 526
a294fd0c4b38
parent 435
build/solaris/makefiles/launcher.make@a61af66fc99e
child 631
d1605aabd0a1
permissions
-rw-r--r--

6583644: Move all managed/SCCS files out of 'build' into 'make' directory
Summary: Moved makefiles out of build and build/closed into make/
Reviewed-by: kvn, ohair

duke@435 1 #
duke@435 2 # Copyright 2005-2007 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 # Rules to build gamma launcher, used by vm.make
duke@435 26
duke@435 27 # gamma[_g]: launcher
duke@435 28 LAUNCHER = gamma$(G_SUFFIX)
duke@435 29
duke@435 30 LAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
duke@435 31 LAUNCHERFLAGS = $(ARCHFLAG) \
duke@435 32 -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
duke@435 33 -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
duke@435 34 -DARCH=\"$(LIBARCH)\" \
duke@435 35 -DGAMMA \
duke@435 36 -DLAUNCHER_TYPE=\"gamma\" \
duke@435 37 -DLINK_INTO_$(LINK_INTO)
duke@435 38
duke@435 39 ifeq ($(LINK_INTO),AOUT)
duke@435 40 LAUNCHER.o = launcher.o $(JVM_OBJ_FILES)
duke@435 41 LAUNCHER_MAPFILE = mapfile_reorder
duke@435 42 LFLAGS_LAUNCHER$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LAUNCHER_MAPFILE))
duke@435 43 LIBS_LAUNCHER += $(LIBS)
duke@435 44 else
duke@435 45 LAUNCHER.o = launcher.o
duke@435 46 LFLAGS_LAUNCHER += -L `pwd`
duke@435 47 LIBS_LAUNCHER += -l$(JVM) $(LIBS)
duke@435 48 endif
duke@435 49
duke@435 50 LINK_LAUNCHER = $(LINK.CC)
duke@435 51
duke@435 52 LINK_LAUNCHER/PRE_HOOK = $(LINK_LIB.CC/PRE_HOOK)
duke@435 53 LINK_LAUNCHER/POST_HOOK = $(LINK_LIB.CC/POST_HOOK)
duke@435 54
duke@435 55 ifeq ("${Platform_compiler}", "sparcWorks")
duke@435 56 # Enable the following LAUNCHERFLAGS addition if you need to compare the
duke@435 57 # built ELF objects.
duke@435 58 #
duke@435 59 # The -g option makes static data global and the "-W0,-noglobal"
duke@435 60 # option tells the compiler to not globalize static data using a unique
duke@435 61 # globalization prefix. Instead force the use of a static globalization
duke@435 62 # prefix based on the source filepath so the objects from two identical
duke@435 63 # compilations are the same.
duke@435 64 #
duke@435 65 # Note: The blog says to use "-W0,-xglobalstatic", but that doesn't
duke@435 66 # seem to work. I got "-W0,-noglobal" from Kelly and that works.
duke@435 67 #LAUNCHERFLAGS += -W0,-noglobal
duke@435 68 endif # Platform_compiler == sparcWorks
duke@435 69
duke@435 70 launcher.o: launcher.c $(LAUNCHERDIR)/java.c $(LAUNCHERDIR)/java_md.c
duke@435 71 $(CC) -g -c -o $@ launcher.c $(LAUNCHERFLAGS) $(CPPFLAGS)
duke@435 72
duke@435 73 launcher.c:
duke@435 74 @echo Generating $@
duke@435 75 $(QUIETLY) { \
duke@435 76 echo '#define debug launcher_debug'; \
duke@435 77 echo '#include "java.c"'; \
duke@435 78 echo '#include "java_md.c"'; \
duke@435 79 } > $@
duke@435 80
duke@435 81 $(LAUNCHER): $(LAUNCHER.o) $(LIBJVM) $(LAUNCHER_MAPFILE)
duke@435 82 $(QUIETLY) \
duke@435 83 case "$(CFLAGS_BROWSE)" in \
duke@435 84 -sbfast|-xsbfast) \
duke@435 85 ;; \
duke@435 86 *) \
duke@435 87 echo Linking launcher...; \
duke@435 88 $(LINK_LAUNCHER/PRE_HOOK) \
duke@435 89 $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER); \
duke@435 90 $(LINK_LAUNCHER/POST_HOOK) \
duke@435 91 ;; \
duke@435 92 esac

mercurial