1 # 2 # Copyright (c) 2011, 2015, 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 # Prepare the find cache. 29 $(eval $(call FillCacheFind, $(JDK_TOPDIR)/src/java.base/share/native/launcher)) 30 31 # Build tools 32 include Tools.gmk 33 34 # When building a legacy overlay image (on solaris 64 bit), the launchers 35 # need to be built with a different rpath and a different output dir. 36 ifeq ($(OVERLAY_IMAGES), true) 37 ORIGIN_ROOT := /../.. 38 OUTPUT_SUBDIR := $(OPENJDK_TARGET_CPU_ISADIR) 39 else 40 ORIGIN_ROOT := /.. 41 endif 42 43 ifeq ($(OPENJDK_TARGET_OS), macosx) 44 ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN) 45 else 46 ORIGIN_ARG := $(call SET_EXECUTABLE_ORIGIN,$(ORIGIN_ROOT)/lib$(OPENJDK_TARGET_CPU_LIBDIR)/jli) 47 endif 48 49 # 50 # Applications expect to be able to link against libjawt without invoking 51 # System.loadLibrary("jawt") first. This was the behaviour described in the 52 # devloper documentation of JAWT and what worked with OpenJDK6. 53 # 54 ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris), ) 55 ORIGIN_ARG += $(call SET_EXECUTABLE_ORIGIN,$(ORIGIN_ROOT)/lib$(OPENJDK_TARGET_CPU_LIBDIR)) 56 endif 57 58 LAUNCHER_SRC := $(JDK_TOPDIR)/src/java.base/share/native/launcher 59 LAUNCHER_CFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/launcher \ 60 -I$(JDK_TOPDIR)/src/java.base/share/native/libjli \ 61 -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libjli \ 62 -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libjli \ 63 # 64 GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc 65 JAVA_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.rc 66 MACOSX_PLIST_DIR := $(JDK_TOPDIR)/src/java.base/macosx/native/launcher 67 # Until the shuffle is permanent, we can't add this in configure 68 CFLAGS_JDKEXE := $(filter-out %javavm/export, $(CFLAGS_JDKEXE)) 69 CFLAGS_JDKEXE += -I$(JDK_TOPDIR)/src/java.base/share/native/include \ 70 -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/include 71 CXXFLAGS_JDKEXE := $(filter-out %javavm/export, $(CXXFLAGS_JDKEXE)) 72 CXXFLAGS_JDKEXE += -I$(JDK_TOPDIR)/src/java.base/share/native/include \ 73 -I$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/include 74 JAVA_MANIFEST := $(JDK_TOPDIR)/src/java.base/windows/native/launcher/java.manifest 75 76 define SetupLauncher 77 # TODO: Fix mapfile on solaris. Won't work with ld as linker. 78 # Parameter 1 is the name of the launcher (java, javac, jar...) 79 # Parameter 2 is extra CFLAGS 80 # Parameter 3 is extra LDFLAGS 81 # Parameter 4 is extra LDFLAGS_SUFFIX_unix 82 # Parameter 5 is extra LDFLAGS_SUFFIX_windows 83 # Parameter 6 is optional Windows JLI library (full path) 84 # Parameter 7 is optional Windows resource (RC) flags 85 # Parameter 8 is optional Windows version resource file (.rc) 86 # Parameter 9 is different output dir 87 # Parameter 10 if set, link statically with c runtime on windows. 88 # Parameter 11 if set, override plist file on macosx. 89 $(call LogSetupMacroEntry,SetupLauncher($1),$2,$3,$4,$5,$6,$7,$8,$9,$(10),$(11)) 90 $(if $(13),$(error Internal makefile error: Too many arguments to SetupLauncher, please update CompileLaunchers.gmk)) 91 92 $1_WINDOWS_JLI_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjli/jli.lib 93 ifneq ($6, ) 94 $1_WINDOWS_JLI_LIB := $6 95 endif 96 $1_VERSION_INFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE) 97 ifneq ($8, ) 98 $1_VERSION_INFO_RESOURCE := $8 99 endif 100 101 $1_LDFLAGS := $3 102 $1_LDFLAGS_SUFFIX := 103 ifeq ($(OPENJDK_TARGET_OS), macosx) 104 $1_PLIST_FILE := Info-cmdline.plist 105 ifneq ($(11), ) 106 $1_PLIST_FILE := $(11) 107 ifneq ($$(findstring privileged, $$($1_PLIST_FILE)), ) 108 $1_CODESIGN := true 109 endif 110 endif 111 112 $1_LDFLAGS += -Wl,-all_load $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a \ 113 -framework Cocoa -framework Security -framework ApplicationServices \ 114 -sectcreate __TEXT __info_plist $(MACOSX_PLIST_DIR)/$$($1_PLIST_FILE) 115 $1_LDFLAGS_SUFFIX += -pthread 116 endif 117 118 ifeq ($(OPENJDK_TARGET_OS), aix) 119 $1_LDFLAGS_SUFFIX += -L$(SUPPORT_OUTPUTDIR)/native/java.base -ljli_static 120 endif 121 122 ifeq ($(USE_EXTERNAL_LIBZ), true) 123 $1_LDFLAGS_SUFFIX += -lz 124 endif 125 126 $1_OUTPUT_DIR_ARG := $9 127 ifeq (, $$($1_OUTPUT_DIR_ARG)) 128 $1_OUTPUT_DIR_ARG := $(SUPPORT_OUTPUTDIR)/modules_cmds/$(MODULE) 129 endif 130 131 # TODO: maybe it's better to move this if-statement out of this function 132 ifeq ($1, java) 133 $1_OPTIMIZATION_ARG := HIGH 134 $1_LDFLAGS_solaris := -R$(OPENWIN_HOME)/lib$(OPENJDK_TARGET_CPU_ISADIR) 135 else 136 $1_OPTIMIZATION_ARG := LOW 137 endif 138 139 $1_CFLAGS := $(CFLAGS_JDKEXE) 140 ifeq ($(10), true) 141 $1_CFLAGS := $(filter-out -MD, $(CFLAGS_JDKEXE)) 142 endif 143 144 # The linker on older SuSE distros (e.g. on SLES 10) complains with: 145 # "Invalid version tag `SUNWprivate_1.1'. Only anonymous version tag is allowed in executable." 146 # if feeded with a version script which contains named tags. 147 ifeq ($(USING_BROKEN_SUSE_LD),yes) 148 ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous), ) 149 $1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU).anonymous 150 else 151 $1_MAPFILE := 152 endif 153 else 154 ifneq ($(wildcard $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU)), ) 155 $1_MAPFILE := $(JDK_TOPDIR)/make/mapfiles/launchers/mapfile-$(OPENJDK_TARGET_CPU) 156 else 157 $1_MAPFILE := 158 endif 159 endif 160 161 $(call SetupNativeCompilation,BUILD_LAUNCHER_$1, \ 162 SRC := $(LAUNCHER_SRC), \ 163 INCLUDE_FILES := main.c, \ 164 OPTIMIZATION := $$($1_OPTIMIZATION_ARG), \ 165 CFLAGS := $$($1_CFLAGS) \ 166 $(LAUNCHER_CFLAGS) \ 167 $(VERSION_CFLAGS) \ 168 -DLAUNCHER_NAME='"$(LAUNCHER_NAME)"' \ 169 -DPROGNAME='"$1"' $(DPACKAGEPATH) \ 170 $2, \ 171 CFLAGS_linux := -fPIC, \ 172 CFLAGS_solaris := -KPIC -DHAVE_GETHRTIME, \ 173 LDFLAGS := $(LDFLAGS_JDKEXE) \ 174 $(ORIGIN_ARG) \ 175 $$($1_LDFLAGS), \ 176 LDFLAGS_macosx := $(call SET_SHARED_LIBRARY_NAME,$1), \ 177 LDFLAGS_linux := -lpthread \ 178 $(call SET_SHARED_LIBRARY_NAME,$(LIBRARY_PREFIX)$(SHARED_LIBRARY_SUFFIX)), \ 179 LDFLAGS_solaris := $$($1_LDFLAGS_solaris) \ 180 $(call SET_SHARED_LIBRARY_NAME,$(LIBRARY_PREFIX)$(SHARED_LIBRARY_SUFFIX)), \ 181 MAPFILE := $$($1_MAPFILE), \ 182 LDFLAGS_SUFFIX := $(LDFLAGS_JDKEXE_SUFFIX) $$($1_LDFLAGS_SUFFIX), \ 183 LDFLAGS_SUFFIX_unix := $4, \ 184 LDFLAGS_SUFFIX_windows := $$($1_WINDOWS_JLI_LIB) \ 185 $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib advapi32.lib $5, \ 186 LDFLAGS_SUFFIX_linux := -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli -ljli $(LIBDL) -lc, \ 187 LDFLAGS_SUFFIX_solaris := -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base$(OPENJDK_TARGET_CPU_LIBDIR)/jli -ljli -lthread $(LIBDL) -lc, \ 188 OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/$1_objs$(OUTPUT_SUBDIR), \ 189 OUTPUT_DIR := $$($1_OUTPUT_DIR_ARG)$(OUTPUT_SUBDIR), \ 190 PROGRAM := $1, \ 191 DEBUG_SYMBOLS := true, \ 192 VERSIONINFO_RESOURCE := $$($1_VERSION_INFO_RESOURCE), \ 193 RC_FLAGS := $(RC_FLAGS) \ 194 -D "JDK_FNAME=$1$(EXE_SUFFIX)" \ 195 -D "JDK_INTERNAL_NAME=$1" \ 196 -D "JDK_FTYPE=0x1L" \ 197 $7, \ 198 MANIFEST := $(JAVA_MANIFEST), \ 199 MANIFEST_VERSION := $(VERSION_NUMBER_FOUR_POSITIONS), \ 200 CODESIGN := $$($1_CODESIGN), \ 201 ) 202 203 TARGETS += $$(BUILD_LAUNCHER_$1) 204 205 ifneq (,$(filter $(OPENJDK_TARGET_OS), macosx aix)) 206 $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjli_static.a 207 endif 208 209 ifeq ($(OPENJDK_TARGET_OS), windows) 210 $$(BUILD_LAUNCHER_$1): $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib \ 211 $$($1_WINDOWS_JLI_LIB) 212 endif 213 endef 214 215 ########################################################################################## 216 217 XLIBS := $(X_LIBS) -lX11 218 ifeq ($(OPENJDK_TARGET_OS), macosx) 219 DPACKAGEPATH := -DPACKAGE_PATH='"$(PACKAGE_PATH)"' 220 XLIBS := 221 endif 222 223 JAVA_RC_FLAGS += -i $(JDK_TOPDIR)/src/java.base/windows/native/common 224 ifdef OPENJDK 225 JAVA_RC_FLAGS += -i "$(JDK_TOPDIR)/src/java.base/windows/native/launcher/icons" 226 else 227 JAVA_RC_FLAGS += -i "$(JDK_TOPDIR)/src/closed/java.base/windows/native/launcher/icons" 228 endif