1 #
   2 # Copyright (c) 2011, 2016, 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.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include NativeCompilation.gmk
  27 
  28 ifeq ($(OPENJDK_TARGET_OS), macosx)
  29   DISABLE_MAPFILES := true
  30   ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN)
  31 else
  32   ifeq ($(OPENJDK_TARGET_OS), windows)
  33     DISABLE_MAPFILES := true
  34   endif
  35   ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN,/../lib/jli)
  36 
  37   # Applications expect to be able to link against libjawt without invoking
  38   # System.loadLibrary("jawt") first. This was the behaviour described in the
  39   # devloper documentation of JAWT and what worked with OpenJDK6.
  40   ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris), )
  41     ORIGIN_ARG += $(call SET_EXECUTABLE_ORIGIN,/../lib)
  42   endif
  43 endif
  44 
  45 LAUNCHER_SRC := $(TOPDIR)/src/java.base/share/native/launcher
  46 LAUNCHER_CFLAGS := -I$(TOPDIR)/src/java.base/share/native/launcher \
  47     -I$(TOPDIR)/src/java.base/share/native/libjli \
  48     -I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \
  49     -I$(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli \
  50     #
  51 GLOBAL_VERSION_INFO_RESOURCE := $(TOPDIR)/src/java.base/windows/native/common/version.rc
  52 JAVA_VERSION_INFO_RESOURCE := $(TOPDIR)/src/java.base/windows/native/launcher/java.rc
  53 MACOSX_PLIST_DIR := $(TOPDIR)/src/java.base/macosx/native/launcher
  54 JAVA_MANIFEST := $(TOPDIR)/src/java.base/windows/native/launcher/java.manifest
  55 
  56 ################################################################################
  57 # Build standard launcher.
  58 
  59 # Setup make rules for building a standard launcher.
  60 #
  61 # Parameter 1 is the name of the rule. This name is used as variable prefix,
  62 # and the targets generated are listed in a variable by that name. It is also
  63 # used as the name of the executable.
  64 #
  65 # Remaining parameters are named arguments. These include:
  66 # MAIN_MODULE  The module of the main class to launch if different from the
  67 #     current module
  68 # MAIN_CLASS   The Java main class to launch
  69 # JAVA_ARGS   Processed into a -DJAVA_ARGS and added to CFLAGS
  70 # EXTRA_JAVA_ARGS Processed into a -DEXTRA_JAVA_ARGS and is prepended
  71 #     before JAVA_ARGS to CFLAGS, primarily to allow long string literal
  72 #     compile time defines exceeding Visual Studio 2013 limitations.
  73 # CFLAGS   Additional CFLAGS
  74 # CFLAGS_windows   Additional CFLAGS_windows
  75 # LIBS_unix   Additional LIBS_unix
  76 # LIBS_windows   Additional LIBS_windows
  77 # LDFLAGS_solaris Additional LDFLAGS_solaris
  78 # RC_FLAGS   Additional RC_FLAGS
  79 # MACOSX_SIGNED   On macosx, sign this binary
  80 # WINDOWS_STATIC_LINK   On windows, link statically with C runtime and libjli.
  81 # OPTIMIZATION   Override default optimization level (LOW)
  82 # OUTPUT_DIR   Override default output directory
  83 # VERSION_INFO_RESOURCE   Override default Windows resource file
  84 # NO_JAVA_MS   Do not add -ms8m to JAVA_ARGS.
  85 SetupBuildLauncher = $(NamedParamsMacroTemplate)
  86 define SetupBuildLauncherBody
  87   # Setup default values (unless overridden)
  88   ifeq ($$($1_VERSION_INFO_RESOURCE), )
  89     $1_VERSION_INFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE)
  90   endif
  91 
  92   ifeq ($$($1_OUTPUT_DIR), )
  93     $1_OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/modules_cmds/$(MODULE)
  94   endif
  95 
  96   ifeq ($$($1_OPTIMIZATION), )
  97     $1_OPTIMIZATION := LOW
  98   endif
  99 
 100   ifneq ($$($1_NO_JAVA_MS), true)
 101     # The norm is to append -ms8m, unless otherwise instructed.
 102     $1_JAVA_ARGS += -ms8m
 103   endif
 104 
 105   ifeq ($$($1_MAIN_MODULE), )
 106     $1_MAIN_MODULE := $(MODULE)
 107   endif
 108 
 109   ifneq ($$($1_JAVA_ARGS), )
 110     ifneq ($$($1_EXTRA_JAVA_ARGS), )
 111       $1_EXTRA_JAVA_ARGS_STR := '{ $$(strip $$(foreach a, \
 112         $$(addprefix -J, $$($1_EXTRA_JAVA_ARGS)), "$$a"$(COMMA) )) }'
 113       $1_CFLAGS += -DEXTRA_JAVA_ARGS=$$($1_EXTRA_JAVA_ARGS_STR)
 114     endif
 115     $1_JAVA_ARGS_STR := '{ $$(strip $$(foreach a, \
 116         $$(addprefix -J, $$($1_JAVA_ARGS)) -m $$($1_MAIN_MODULE)/$$($1_MAIN_CLASS), "$$a"$(COMMA) )) }'
 117     $1_CFLAGS += -DJAVA_ARGS=$$($1_JAVA_ARGS_STR)
 118   endif
 119 
 120   $1_LIBS :=
 121   ifeq ($(OPENJDK_TARGET_OS), macosx)
 122     ifeq ($$($1_MACOSX_SIGNED), true)
 123       $1_PLIST_FILE := Info-privileged.plist
 124         $1_CODESIGN := true
 125     else
 126       $1_PLIST_FILE := Info-cmdline.plist
 127     endif
 128 
 129     $1_CFLAGS += -DPACKAGE_PATH='"$(PACKAGE_PATH)"'
 130     $1_LDFLAGS += -Wl,-all_load \
 131         -sectcreate __TEXT __info_plist $(MACOSX_PLIST_DIR)/$$($1_PLIST_FILE)
 132     ifeq ($(STATIC_BUILD), true)
 133       $1_LDFLAGS += -exported_symbols_list \
 134               $(SUPPORT_OUTPUTDIR)/build-static/exported.symbols
 135       $1_LIBS += \
 136           $$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/modules_libs/java.base -name "*.a") \
 137           $(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libdt_socket.a \
 138           $(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libjdwp.a \
 139           $(SUPPORT_OUTPUTDIR)/native/java.base/$(LIBRARY_PREFIX)fdlibm$(STATIC_LIBRARY_SUFFIX) \
 140           -framework CoreFoundation \
 141           -framework Foundation \
 142           -framework SystemConfiguration \
 143           -lstdc++ -liconv
 144     else
 145       $1_LIBS += $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a
 146     endif
 147     $1_LIBS += -framework Cocoa -framework Security \
 148         -framework ApplicationServices
 149   endif
 150 
 151   ifeq ($(OPENJDK_TARGET_OS), aix)
 152     $1_LDFLAGS += -L$(SUPPORT_OUTPUTDIR)/native/java.base
 153     $1_LIBS += -ljli_static
 154   endif
 155 
 156   ifeq ($(USE_EXTERNAL_LIBZ), true)
 157     $1_LIBS += -lz
 158   endif
 159 
 160   ifeq ($$($1_WINDOWS_STATIC_LINK), true)
 161     $1_CFLAGS += $(filter-out -MD, $(CFLAGS_JDKEXE))
 162     $1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/jli_static.lib
 163   else
 164     $1_CFLAGS += $(CFLAGS_JDKEXE)
 165     $1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjli/jli.lib
 166   endif
 167 
 168   # The linker on older SuSE distros (e.g. on SLES 10) complains with:
 169   # "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable."
 170   # if feeded with a version script which contains named tags.
 171   ifeq ($(USING_BROKEN_SUSE_LD),yes)
 172     ifneq ($(wildcard $(TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous), )
 173       $1_MAPFILE := $(TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous
 174     else
 175       $1_MAPFILE :=
 176     endif
 177   else
 178     ifneq ($(wildcard $(TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)), )
 179       $1_MAPFILE := $(TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)
 180     else
 181       $1_MAPFILE :=
 182     endif
 183   endif
 184 
 185   $$(eval $$(call SetupNativeCompilation, BUILD_LAUNCHER_$1, \
 186       EXTRA_FILES := $(LAUNCHER_SRC)/main.c, \
 187       OPTIMIZATION := $$($1_OPTIMIZATION), \
 188       CFLAGS := $$($1_CFLAGS) \
 189           $(LAUNCHER_CFLAGS) \
 190           $(VERSION_CFLAGS) \
 191           -DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' \
 192           -DPROGNAME='"$1"' \
 193           $$($1_CFLAGS), \
 194       CFLAGS_linux := -fPIC, \
 195       CFLAGS_solaris := -KPIC -DHAVE_GETHRTIME, \
 196       CFLAGS_windows := $$($1_CFLAGS_windows), \
 197       LDFLAGS := $$(LDFLAGS_JDKEXE) \
 198           $$(ORIGIN_ARG) \
 199           $$($1_LDFLAGS), \
 200       LDFLAGS_linux := \
 201           -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/jli, \
 202       LDFLAGS_solaris := $$($1_LDFLAGS_solaris) \
 203           -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base/jli, \
 204       MAPFILE := $$($1_MAPFILE), \
 205       LIBS := $(JDKEXE_LIBS) $$($1_LIBS), \
 206       LIBS_unix := $$($1_LIBS_unix), \
 207       LIBS_linux := -lpthread -ljli $(LIBDL) -lc, \
 208       LIBS_solaris := -ljli -lthread $(LIBDL) -lc, \
 209       LIBS_windows := $$($1_WINDOWS_JLI_LIB) \
 210           $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib advapi32.lib \
 211           $$($1_LIBS_windows), \
 212       OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/$1_objs, \
 213       OUTPUT_DIR := $$($1_OUTPUT_DIR), \
 214       PROGRAM := $1, \
 215       VERSIONINFO_RESOURCE := $$($1_VERSION_INFO_RESOURCE), \
 216       RC_FLAGS := $$(RC_FLAGS) \
 217           -D "JDK_FNAME=$1$(EXE_SUFFIX)" \
 218           -D "JDK_INTERNAL_NAME=$1" \
 219           -D "JDK_FTYPE=0x1L" \
 220           $$($1_RC_FLAGS), \
 221       MANIFEST := $(JAVA_MANIFEST), \
 222       MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \
 223       CODESIGN := $$($1_CODESIGN), \
 224   ))
 225 
 226   $1 += $$(BUILD_LAUNCHER_$1)
 227   TARGETS += $$($1)
 228 
 229   ifneq (,$(filter $(OPENJDK_TARGET_OS), macosx aix))
 230     $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a
 231   endif
 232 
 233   ifeq ($(OPENJDK_TARGET_OS), windows)
 234     $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib \
 235         $$($1_WINDOWS_JLI_LIB)
 236   endif
 237 endef