make/lib/Lib-java.base.gmk
author erikj
Tue, 29 Oct 2019 12:01:14 -0700
changeset 58846 f9ac726ab347
parent 57796 56df9a08ed9c
permissions -rw-r--r--
8232748: Build static versions of certain JDK libraries Reviewed-by: ihse, bobv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
54380
e297c7bb6469 8189861: Refactor CacheFind
erikj
parents: 53683
diff changeset
     2
# Copyright (c) 2011, 2019, Oracle and/or its affiliates. All rights reserved.
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     4
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    10
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    15
# accompanied this code).
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    16
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    20
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    23
# questions.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    24
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    25
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    26
include LibCommon.gmk
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
47336
6694369ed3f9 8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents: 47217
diff changeset
    28
# Hook to include the corresponding custom file, if present.
6694369ed3f9 8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents: 47217
diff changeset
    29
$(eval $(call IncludeCustomExtension, lib/Lib-java.base.gmk))
6694369ed3f9 8189229: Remove references to $(TOPDIR)/src/*/$(MODULE)
ihse
parents: 47217
diff changeset
    30
26192
33b90e93e3bf 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25859
diff changeset
    31
# Prepare the find cache.
54380
e297c7bb6469 8189861: Refactor CacheFind
erikj
parents: 53683
diff changeset
    32
$(call FillFindCache, $(wildcard $(TOPDIR)/src/java.base/*/native))
26192
33b90e93e3bf 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25859
diff changeset
    33
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    34
################################################################################
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    35
# Create all the core libraries
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    36
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    37
include CoreLibraries.gmk
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    38
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    39
################################################################################
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    40
# Create the network library
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    41
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    42
$(eval $(call SetupJdkLibrary, BUILD_LIBNET, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    43
    NAME := net, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    44
    OPTIMIZATION := LOW, \
50471
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    45
    CFLAGS := $(CFLAGS_JDKLIB), \
51853
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
    46
    DISABLED_WARNINGS_gcc := format-nonliteral unused-function, \
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
    47
    DISABLED_WARNINGS_clang := parentheses-equality constant-logical-operand \
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
    48
        format-nonliteral undef, \
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    49
    DISABLED_WARNINGS_microsoft := 4244 4047 4133 4996, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    50
    DISABLED_WARNINGS_solstudio := E_ARG_INCOMPATIBLE_WITH_ARG_L, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    51
    LDFLAGS := $(LDFLAGS_JDKLIB) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    52
        $(call SET_SHARED_LIBRARY_ORIGIN), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    53
    LDFLAGS_windows := -delayload:secur32.dll -delayload:iphlpapi.dll, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    54
    LIBS_unix := -ljvm -ljava, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    55
    LIBS_linux := $(LIBDL) -lpthread, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    56
    LIBS_solaris := -lnsl -lsocket $(LIBDL), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    57
    LIBS_aix := $(LIBDL),\
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    58
    LIBS_windows := ws2_32.lib jvm.lib secur32.lib iphlpapi.lib winhttp.lib \
57796
56df9a08ed9c 8225425: java.lang.UnsatisfiedLinkError: net.dll: Can't find dependent libraries
chegar
parents: 54380
diff changeset
    59
        delayimp.lib $(WIN_JAVA_LIB) advapi32.lib, \
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    60
    LIBS_macosx := -framework CoreFoundation -framework CoreServices, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    61
))
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    62
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    63
$(BUILD_LIBNET): $(BUILD_LIBJAVA)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    64
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    65
TARGETS += $(BUILD_LIBNET)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    66
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    67
################################################################################
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    68
# Create the nio library
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    69
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    70
$(eval $(call SetupJdkLibrary, BUILD_LIBNIO, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    71
    NAME := nio, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    72
    OPTIMIZATION := HIGH, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    73
    WARNINGS_AS_ERRORS_xlc := false, \
50471
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    74
    CFLAGS := $(CFLAGS_JDKLIB), \
51853
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
    75
    DISABLED_WARNINGS_gcc := undef, \
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
    76
    DISABLED_WARNINGS_clang := undef, \
50471
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    77
    EXTRA_HEADER_DIRS := \
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    78
        libnio/ch \
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    79
        libnio/fs \
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
    80
        libnet, \
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    81
    LDFLAGS := $(LDFLAGS_JDKLIB) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    82
        $(call SET_SHARED_LIBRARY_ORIGIN), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    83
    LIBS_unix := -ljava -lnet, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    84
    LIBS_linux := -lpthread $(LIBDL), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    85
    LIBS_solaris := -ljvm -lsocket -lposix4 $(LIBDL) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    86
        -lsendfile, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    87
    LIBS_aix := $(LIBDL), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    88
    LIBS_macosx := \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    89
        -framework CoreFoundation -framework CoreServices, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    90
    LIBS_windows := jvm.lib ws2_32.lib $(WIN_JAVA_LIB) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    91
        $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libnet/net.lib \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    92
        advapi32.lib, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    93
))
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    94
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    95
TARGETS += $(BUILD_LIBNIO)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    96
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    97
$(BUILD_LIBNIO): $(BUILD_LIBNET)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    98
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
    99
################################################################################
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   100
# Create the macosx security library
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   101
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 53328
diff changeset
   102
ifeq ($(call isTargetOs, macosx), true)
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   103
  # JavaNativeFoundation framework not supported in static builds
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   104
  ifneq ($(STATIC_BUILD), true)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   105
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   106
    $(eval $(call SetupJdkLibrary, BUILD_LIBOSXSECURITY, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   107
        NAME := osxsecurity, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   108
        OPTIMIZATION := LOW, \
50471
f0aeede1b855 8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents: 49561
diff changeset
   109
        CFLAGS := $(CFLAGS_JDKLIB), \
51853
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
   110
        DISABLED_WARNINGS_clang := deprecated-declarations \
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
   111
            missing-method-return-type, \
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   112
        LDFLAGS := $(LDFLAGS_JDKLIB) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   113
            -L$(SUPPORT_OUTPUTDIR)/modules_libs/java.base \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   114
            $(call SET_SHARED_LIBRARY_ORIGIN) \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   115
            -fobjc-link-runtime, \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   116
        LIBS := \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   117
            -framework JavaNativeFoundation \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   118
            -framework CoreServices \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   119
            -framework Security \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   120
            $(JDKLIB_LIBS), \
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   121
    ))
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   122
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   123
    $(BUILD_LIBOSXSECURITY): $(BUILD_LIBJAVA)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   124
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   125
    TARGETS += $(BUILD_LIBOSXSECURITY)
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   126
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   127
  endif
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   128
endif
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   129
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   130
################################################################################
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   131
# Create the jsig library
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   132
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 53328
diff changeset
   133
ifeq ($(call isTargetOsType, unix), true)
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   134
  ifeq ($(STATIC_BUILD), false)
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   135
    $(eval $(call SetupJdkLibrary, BUILD_LIBJSIG, \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   136
        NAME := jsig, \
51849
4010c90156d1 8210761: libjsig is being compiled without optimization
sgehwolf
parents: 51825
diff changeset
   137
        OPTIMIZATION := LOW, \
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49423
diff changeset
   138
        CFLAGS := $(CFLAGS_JDKLIB) $(LIBJSIG_CFLAGS), \
51853
ec62d6cab037 8211029: Have a common set of enabled warnings for all native libraries
ihse
parents: 51849
diff changeset
   139
        DISABLED_WARNINGS_gcc := undef, \
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   140
        LDFLAGS := $(LDFLAGS_JDKLIB) \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   141
            $(call SET_SHARED_LIBRARY_ORIGIN), \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   142
        LIBS_linux := $(LIBDL), \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   143
        LIBS_solaris := $(LIBDL), \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   144
        LIBS_aix := $(LIBDL), \
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   145
    ))
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   146
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   147
    TARGETS += $(BUILD_LIBJSIG)
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   148
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   149
    ############################################################################
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   150
    # Create symlinks to libjsig in each JVM variant sub dir
58846
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   151
    ifneq ($(STATIC_LIBS), true)
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   152
      LIB_OUTPUTDIR := $(call FindLibDirForModule, java.base)
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   153
58846
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   154
      # $1 variant subdir
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   155
      define CreateSymlinks
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   156
        # Always symlink from libdir/variant/libjsig.so -> ../libjsig.so.
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   157
        $(LIB_OUTPUTDIR)/$1/$(call SHARED_LIBRARY,jsig): \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   158
            $(LIB_OUTPUTDIR)/$(call SHARED_LIBRARY,jsig)
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   159
		$$(call MakeDir, $$(@D))
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   160
		$(RM) $$@
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   161
		$(LN) -s ../$$(@F) $$@
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   162
58846
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   163
        TARGETS += $(LIB_OUTPUTDIR)/$1/$(call SHARED_LIBRARY,jsig)
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   164
      endef
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   165
58846
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   166
      # The subdir is the same as the variant for client and minimal, for all
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   167
      # others it's server.
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   168
      VARIANT_SUBDIRS := $(filter client minimal, $(JVM_VARIANTS)) \
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   169
          $(if $(filter-out client minimal, $(JVM_VARIANTS)), server)
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   170
      $(foreach v, $(VARIANT_SUBDIRS), $(eval $(call CreateSymlinks,$v)))
f9ac726ab347 8232748: Build static versions of certain JDK libraries
erikj
parents: 57796
diff changeset
   171
    endif
49423
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   172
    ############################################################################
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   173
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   174
  endif
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   175
endif
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   176
fd608d605e2f 8200229: Simplify building of libjsig
ihse
parents: 49252
diff changeset
   177
################################################################################
49252
6628683fde28 8199668: make/lib cleanup
ihse
parents: 47336
diff changeset
   178
# Create the symbols file for static builds.
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   179
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   180
ifeq ($(STATIC_BUILD), true)
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   181
  JAVA_BASE_EXPORT_SYMBOLS_SRC := \
51825
e3632b4706c4 8210931: JLI and launchers normalization and cleanup
ihse
parents: 51730
diff changeset
   182
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)jli.symbols \
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   183
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)java.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   184
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)net.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   185
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)nio.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   186
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)verify.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   187
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)zip.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   188
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/$(LIBRARY_PREFIX)jimage.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   189
      $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/server/$(LIBRARY_PREFIX)jvm.symbols \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   190
      #
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   191
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   192
  JAVA_BASE_EXPORT_SYMBOL_FILE := $(SUPPORT_OUTPUTDIR)/modules_libs/java.base/java.base.symbols
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   193
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   194
  $(JAVA_BASE_EXPORT_SYMBOL_FILE): $(JAVA_BASE_EXPORT_SYMBOLS_SRC)
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 33657
diff changeset
   195
	$(call LogInfo, Generating java.base.symbols file)
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   196
	$(CAT) $^ > $@
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   197
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   198
  # The individual symbol files is generated when the respective lib is built
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   199
  $(JAVA_BASE_EXPORT_SYMBOLS_SRC): $(BUILD_LIBJLI) $(BUILD_LIBJAVA) \
33657
71caffb7dba4 8140396: BUILD_LIBJIMAGE missing as a dependency to JAVA_BASE_EXPORT_SYMBOLS_SRC
bobv
parents: 33653
diff changeset
   200
      $(BUILD_LIBNET) $(BUILD_LIBNIO) $(BUILD_LIBVERIFY) $(BUILD_LIBZIP) \
71caffb7dba4 8140396: BUILD_LIBJIMAGE missing as a dependency to JAVA_BASE_EXPORT_SYMBOLS_SRC
bobv
parents: 33653
diff changeset
   201
      $(BUILD_LIBJIMAGE)
33653
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   202
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   203
  TARGETS += $(JAVA_BASE_EXPORT_SYMBOL_FILE)
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 32229
diff changeset
   204
endif
51730
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   205
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   206
################################################################################
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   207
# Copy tzmappings file for Windows
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   208
53683
48ff68e2fe5c 8218431: Improved platform checking in makefiles
ihse
parents: 53328
diff changeset
   209
ifeq ($(call isTargetOs, windows), true)
51730
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   210
  $(eval $(call SetupCopyFiles, COPY_TZMAPPINGS, \
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   211
      FILES := $(SUPPORT_OUTPUTDIR)/gensrc/java.base/windows/conf/tzmappings, \
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   212
      DEST := $(call FindLibDirForModule, $(MODULE)), \
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   213
  ))
cd0775f67ab0 8209167: Use CLDR's time zone mappings for Windows
naoto
parents: 51677
diff changeset
   214
  TARGETS += $(COPY_TZMAPPINGS)
51825
e3632b4706c4 8210931: JLI and launchers normalization and cleanup
ihse
parents: 51730
diff changeset
   215
endif