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   ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN)
  30 else
  31   ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN,/../lib$(OPENJDK_TARGET_CPU_LIBDIR)/jli)
  32 
  33   # Applications expect to be able to link against libjawt without invoking
  34   # System.loadLibrary("jawt") first. This was the behaviour described in the
  35   # devloper documentation of JAWT and what worked with OpenJDK6.
  36   ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris), )
  37     ORIGIN_ARG += $(call SET_EXECUTABLE_ORIGIN,/../lib$(OPENJDK_TARGET_CPU_LIBDIR))
  38   endif
  39 endif
  40 
  41 LAUNCHER_SRC := $(JDK_TOPDIR)/src/java.base/share/native/launcher
  42 LAUNCHER_CFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/launcher \
  43     -I$(JDK_TOPDIR)/src/java.base/share/native/libjli \
  44     -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \
  45     -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli \
  46     #
  47 GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc
  48 JAVA_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.rc
  49 MACOSX_PLIST_DIR := $(JDK_TOPDIR)/src/java.base/macosx/native/launcher
  50 JAVA_MANIFEST := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.manifest
  51 
  52 ################################################################################
  53 # Build standard launcher.
  54 
  55 # Setup make rules for building a standard launcher.
  56 #
  57 # Parameter 1 is the name of the rule. This name is used as variable prefix,
  58 # and the targets generated are listed in a variable by that name. It is also
  59 # used as the name of the executable.
  60 #
  61 # Remaining parameters are named arguments. These include:
  62 # MAIN_CLASS   The Java main class to launch
  63 # JAVA_ARGS   Processed into a -DJAVA_ARGS C flag
  64 # CFLAGS   Additional CFLAGS
  65 # CFLAGS_windows   Additional CFLAGS_windows
  66 # LIBS_unix   Additional LIBS_unix
  67 # LIBS_windows   Additional LIBS_windows
  68 # LDFLAGS_solaris Additional LDFLAGS_solaris
  69 # RC_FLAGS   Additional RC_FLAGS
  70 # MACOSX_SIGNED   On macosx, sign this binary
  71 # WINDOWS_STATIC_LINK   On windows, link statically with C runtime and libjli.
  72 # OPTIMIZATION   Override default optimization level (LOW)
  73 # OUTPUT_DIR   Override default output directory
  74 # VERSION_INFO_RESOURCE   Override default Windows resource file
  75 # NO_JAVA_MS   Do not add -ms8m to JAVA_ARGS.
  76 SetupBuildLauncher = $(NamedParamsMacroTemplate)
  77 define SetupBuildLauncherBody
  78   # Setup default values (unless overridden)
  79   ifeq ($$($1_VERSION_INFO_RESOURCE), )
  80     $1_VERSION_INFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE)
  81   endif
  82 
  83   ifeq ($$($1_OUTPUT_DIR), )
  84     $1_OUTPUT_DIR := $(SUPPORT_OUTPUTDIR)/modules_cmds/$(MODULE)
  85   endif
  86 
  87   ifeq ($$($1_OPTIMIZATION), )
  88     $1_OPTIMIZATION := LOW
  89   endif
  90 
  91   ifneq ($$($1_NO_JAVA_MS), true)
  92     # The norm is to append -ms8m, unless otherwise instructed.
  93     $1_JAVA_ARGS += -ms8m
  94   endif
  95 
  96   ifneq ($$($1_JAVA_ARGS), )
  97     $1_JAVA_ARGS_STR := '{ $$(strip $$(foreach a, \
  98         $$(addprefix -J, $$($1_JAVA_ARGS)) $$($1_MAIN_CLASS), "$$a"$(COMMA) )) }'
  99     $1_CFLAGS += -DJAVA_ARGS=$$($1_JAVA_ARGS_STR)
 100   endif
 101 
 102   $1_LIBS :=
 103   ifeq ($(OPENJDK_TARGET_OS), macosx)
 104     ifeq ($$($1_MACOSX_SIGNED), true)
 105       $1_PLIST_FILE := Info-privileged.plist
 106         $1_CODESIGN := true
 107     else
 108       $1_PLIST_FILE := Info-cmdline.plist
 109     endif
 110 
 111     $1_CFLAGS += -DPACKAGE_PATH='"$(PACKAGE_PATH)"'
 112     $1_LDFLAGS += -Wl,-all_load \
 113         -sectcreate __TEXT __info_plist $(MACOSX_PLIST_DIR)/$$($1_PLIST_FILE)
 114     ifeq ($(STATIC_BUILD), true)
 115       $1_LDFLAGS += -exported_symbols_list \
 116               $(SUPPORT_OUTPUTDIR)/build-static/exported.symbols
 117       $1_LIBS += \
 118           $$(shell $(FIND) $(SUPPORT_OUTPUTDIR)/modules_libs/java.base -name "*.a") \
 119           $(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libdt_socket.a \
 120           $(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/libjdwp.a \
 121           $(SUPPORT_OUTPUTDIR)/native/java.base/$(LIBRARY_PREFIX)fdlibm$(STATIC_LIBRARY_SUFFIX) \
 122           -framework CoreFoundation \
 123           -framework Foundation \
 124           -framework SystemConfiguration \
 125           -lstdc++ $(ICONV_LIBS)
 126     else
 127       $1_LIBS += $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a
 128     endif
 129     $1_LIBS += -framework Cocoa -framework Security \
 130         -framework ApplicationServices
 131   endif
 132 
 133   ifeq ($(OPENJDK_TARGET_OS), aix)
 134     $1_LDFLAGS += -L$(SUPPORT_OUTPUTDIR)/native/java.base
 135     $1_LIBS += -ljli_static
 136   endif
 137 
 138   ifeq ($(OPENJDK_TARGET_OS), bsd)
 139     ifeq ($(OPENJDK_TARGET_OS_ENV), bsd.netbsd)
 140       $1_LDFLAGS += -L$(SUPPORT_OUTPUTDIR)/native/java.base
 141       $1_LIBS += -ljli_static
 142     else
 143       $1_LIBS += -ljli
 144     endif
 145   endif
 146 
 147   ifeq ($(USE_EXTERNAL_LIBZ), true)
 148     $1_LIBS += -lz
 149   endif
 150 
 151   ifeq ($$($1_WINDOWS_STATIC_LINK), true)
 152     $1_CFLAGS += $(filter-out -MD, $(CFLAGS_JDKEXE))
 153     $1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/jli_static.lib
 154   else
 155     $1_CFLAGS += $(CFLAGS_JDKEXE)
 156     $1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjli/jli.lib
 157   endif
 158 
 159   # The linker on older SuSE distros (e.g. on SLES 10) complains with:
 160   # "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable."
 161   # if feeded with a version script which contains named tags.
 162   $1_MAPFILE :=
 163   ifeq ($(USING_BROKEN_SUSE_LD),yes)
 164     ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous), )
 165       $1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous
 166     endif
 167   else
 168     ifneq ($(OPENJDK_TARGET_OS), bsd)
 169       ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)), )
 170         $1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)
 171       endif
 172     endif
 173   endif
 174 
 175   $$(eval $$(call SetupNativeCompilation, BUILD_LAUNCHER_$1, \
 176       EXTRA_FILES := $(LAUNCHER_SRC)/main.c, \
 177       OPTIMIZATION := $$($1_OPTIMIZATION), \
 178       CFLAGS := $$($1_CFLAGS) \
 179           $(LAUNCHER_CFLAGS) \
 180           $(VERSION_CFLAGS) \
 181           -DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' \
 182           -DPROGNAME='"$1"' \
 183           $$($1_CFLAGS), \
 184       CFLAGS_linux := -fPIC, \
 185       CFLAGS_solaris := -KPIC -DHAVE_GETHRTIME, \
 186       CFLAGS_windows := $$($1_CFLAGS_windows), \
 187       LDFLAGS := $$(LDFLAGS_JDKEXE) \
 188           $$(ORIGIN_ARG) \
 189           $$($1_LDFLAGS), \
 190       LDFLAGS_linux := \
 191           -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli, \
 192       LDFLAGS_solaris := $$($1_LDFLAGS_solaris) \
 193           -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli, \
 194       LDFLAGS_bsd := \
 195           -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli, \
 196       MAPFILE := $$($1_MAPFILE), \
 197       LIBS := $(JDKEXE_LIBS) $$($1_LIBS), \
 198       LIBS_unix := $$($1_LIBS_unix), \
 199       LIBS_linux := -lpthread -ljli $(LIBDL) -lc, \
 200       LIBS_solaris := -ljli -lthread $(LIBDL) -lc, \
 201       LIBS_bsd := -lpthread, \
 202       LIBS_windows := $$($1_WINDOWS_JLI_LIB) \
 203           $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib advapi32.lib \
 204           $$($1_LIBS_windows), \
 205       OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/$1_objs, \
 206       OUTPUT_DIR := $$($1_OUTPUT_DIR), \
 207       PROGRAM := $1, \
 208       VERSIONINFO_RESOURCE := $$($1_VERSION_INFO_RESOURCE), \
 209       RC_FLAGS := $$(RC_FLAGS) \
 210           -D "JDK_FNAME=$1$(EXE_SUFFIX)" \
 211           -D "JDK_INTERNAL_NAME=$1" \
 212           -D "JDK_FTYPE=0x1L" \
 213           $$($1_RC_FLAGS), \
 214       MANIFEST := $(JAVA_MANIFEST), \
 215       MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \
 216       CODESIGN := $$($1_CODESIGN), \
 217   ))
 218 
 219   $1 += $$(BUILD_LAUNCHER_$1)
 220   TARGETS += $$($1)
 221 
 222   ifneq (,$(filter $(OPENJDK_TARGET_OS), macosx aix))
 223     $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a
 224   endif
 225 
 226   ifeq ($(OPENJDK_TARGET_OS), windows)
 227     $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib \
 228         $$($1_WINDOWS_JLI_LIB)
 229   endif
 230 endef