launcher.make revision 1472
0N/A#
1472N/A# Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1472N/A# or visit www.oracle.com if you need additional information or have any
1472N/A# questions.
0N/A#
0N/A#
0N/A
0N/A# Rules to build gamma launcher, used by vm.make
0N/A
0N/A# gamma[_g]: launcher
1123N/ALAUNCHER = gamma
1123N/ALAUNCHER_G = $(LAUNCHER)$(G_SUFFIX)
0N/A
0N/ALAUNCHERDIR = $(GAMMADIR)/src/os/$(Platform_os_family)/launcher
0N/ALAUNCHERFLAGS = $(ARCHFLAG) \
0N/A -I$(LAUNCHERDIR) -I$(GAMMADIR)/src/share/vm/prims \
0N/A -DFULL_VERSION=\"$(HOTSPOT_RELEASE_VERSION)\" \
0N/A -DARCH=\"$(LIBARCH)\" \
0N/A -DGAMMA \
0N/A -DLAUNCHER_TYPE=\"gamma\" \
0N/A -DLINK_INTO_$(LINK_INTO)
0N/A
0N/Aifeq ($(LINK_INTO),AOUT)
0N/A LAUNCHER.o = launcher.o $(JVM_OBJ_FILES)
0N/A LAUNCHER_MAPFILE = mapfile_reorder
0N/A LFLAGS_LAUNCHER$(LDNOMAP) += $(MAPFLAG:FILENAME=$(LAUNCHER_MAPFILE))
0N/A LIBS_LAUNCHER += $(LIBS)
0N/Aelse
0N/A LAUNCHER.o = launcher.o
0N/A LFLAGS_LAUNCHER += -L `pwd`
0N/A LIBS_LAUNCHER += -l$(JVM) $(LIBS)
0N/Aendif
0N/A
0N/ALINK_LAUNCHER = $(LINK.CC)
0N/A
0N/ALINK_LAUNCHER/PRE_HOOK = $(LINK_LIB.CC/PRE_HOOK)
0N/ALINK_LAUNCHER/POST_HOOK = $(LINK_LIB.CC/POST_HOOK)
0N/A
0N/Aifeq ("${Platform_compiler}", "sparcWorks")
0N/A# Enable the following LAUNCHERFLAGS addition if you need to compare the
0N/A# built ELF objects.
0N/A#
0N/A# The -g option makes static data global and the "-W0,-noglobal"
0N/A# option tells the compiler to not globalize static data using a unique
0N/A# globalization prefix. Instead force the use of a static globalization
0N/A# prefix based on the source filepath so the objects from two identical
0N/A# compilations are the same.
0N/A#
0N/A# Note: The blog says to use "-W0,-xglobalstatic", but that doesn't
0N/A# seem to work. I got "-W0,-noglobal" from Kelly and that works.
0N/A#LAUNCHERFLAGS += -W0,-noglobal
0N/Aendif # Platform_compiler == sparcWorks
0N/A
0N/Alauncher.o: launcher.c $(LAUNCHERDIR)/java.c $(LAUNCHERDIR)/java_md.c
0N/A $(CC) -g -c -o $@ launcher.c $(LAUNCHERFLAGS) $(CPPFLAGS)
0N/A
0N/Alauncher.c:
0N/A @echo Generating $@
0N/A $(QUIETLY) { \
0N/A echo '#define debug launcher_debug'; \
0N/A echo '#include "java.c"'; \
0N/A echo '#include "java_md.c"'; \
0N/A } > $@
0N/A
0N/A$(LAUNCHER): $(LAUNCHER.o) $(LIBJVM) $(LAUNCHER_MAPFILE)
1467N/Aifeq ($(filter -sbfast -xsbfast, $(CFLAGS_BROWSE)),)
1467N/A @echo Linking launcher...
1467N/A $(QUIETLY) $(LINK_LAUNCHER/PRE_HOOK)
0N/A $(QUIETLY) \
1467N/A $(LINK_LAUNCHER) $(LFLAGS_LAUNCHER) -o $@ $(LAUNCHER.o) $(LIBS_LAUNCHER)
1467N/A $(QUIETLY) $(LINK_LAUNCHER/POST_HOOK)
1467N/A [ -f $(LAUNCHER_G) ] || ln -s $@ $(LAUNCHER_G)
1467N/Aendif # filter -sbfast -xsbfast
1467N/A