make/lib/LibCommon.gmk
author xuelei
Mon, 04 Jun 2018 04:08:12 +0000
branchJDK-8145252-TLS13-branch
changeset 56663 e522520c2eb3
parent 50126 98f57dff16f3
child 50471 f0aeede1b855
child 56687 f0d5c39dfbc1
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
49239
c35ec365e329 8199483: Clean up some non-standard LDFLAGS usage
ihse
parents: 48751
diff changeset
     2
# Copyright (c) 2011, 2018, 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
49244
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49239
diff changeset
    26
include JdkNativeCompilation.gmk
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
35262
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    28
# Hook to include the corresponding custom file, if present.
47314
743814386712 8188814: Simplify IncludeCustomExtension
ihse
parents: 47217
diff changeset
    29
$(eval $(call IncludeCustomExtension, lib/LibCommon.gmk))
35262
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    30
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    31
################################################################################
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    32
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    33
GLOBAL_VERSION_INFO_RESOURCE := $(TOPDIR)/src/java.base/windows/native/common/version.rc
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    34
49239
c35ec365e329 8199483: Clean up some non-standard LDFLAGS usage
ihse
parents: 48751
diff changeset
    35
# Absolute paths to lib files on windows for use in LIBS. Should figure out a more
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    36
# elegant solution to this.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    37
WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    38
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    39
# Tell the compiler not to export any functions unless declared so in
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    40
# the source code. On Windows, this is the default and cannot be changed.
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    41
# On Mac, we have always exported all symbols, probably due to oversight
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    42
# and/or misunderstanding. To emulate this, don't hide any symbols
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    43
# by default.
50126
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    44
# On AIX/xlc we need at least xlc 13.1 for the symbol hiding
49440
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    45
# Also provide an override for non-conformant libraries.
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    46
ifeq ($(TOOLCHAIN_TYPE), gcc)
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    47
  CFLAGS_JDKLIB += -fvisibility=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    48
  CXXFLAGS_JDKLIB += -fvisibility=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    49
  LDFLAGS_JDKLIB += -Wl,--exclude-libs,ALL
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    50
  EXPORT_ALL_SYMBOLS := -fvisibility=default
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    51
else ifeq ($(TOOLCHAIN_TYPE), clang)
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    52
  ifneq ($(OPENJDK_TARGET_OS), macosx)
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    53
    CFLAGS_JDKLIB += -fvisibility=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    54
    CXXFLAGS_JDKLIB += -fvisibility=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    55
    EXPORT_ALL_SYMBOLS := -fvisibility=default
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    56
  endif
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    57
else ifeq ($(TOOLCHAIN_TYPE), solstudio)
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    58
  CFLAGS_JDKLIB += -xldscope=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    59
  CXXFLAGS_JDKLIB += -xldscope=hidden
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    60
  EXPORT_ALL_SYMBOLS := -xldscope=global
396ea30afbd5 8200178: Remove mapfiles for JDK native libraries
ihse
parents: 49261
diff changeset
    61
else ifeq ($(TOOLCHAIN_TYPE), xlc)
50126
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    62
  ifneq ($(CC_VERSION_NUMBER), 12.1)
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    63
    CFLAGS_JDKLIB += -qvisibility=hidden
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    64
    CXXFLAGS_JDKLIB += -qvisibility=hidden
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    65
    EXPORT_ALL_SYMBOLS := -qvisibility=default
98f57dff16f3 8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents: 49440
diff changeset
    66
  endif
35781
88c56fe09cb8 8149647: Incremental enhancements from build-infra
ihse
parents: 35276
diff changeset
    67
endif
88c56fe09cb8 8149647: Incremental enhancements from build-infra
ihse
parents: 35276
diff changeset
    68
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    69
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    70
# Find the default set of src dirs for a native library.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    71
# Param 1 - module name
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    72
# Param 2 - library name
35262
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    73
FindSrcDirsForLib += \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    74
  $(call uniq, $(wildcard \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    75
      $(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS)/native/lib$(strip $2) \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    76
      $(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS_TYPE)/native/lib$(strip $2) \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    77
      $(TOPDIR)/src/$(strip $1)/share/native/lib$(strip $2)))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    78
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    79
################################################################################
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    80
# Find a library
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    81
# Param 1 - module name
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    82
# Param 2 - library name
49261
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    83
# Param 3 - optional subdir for library
28307
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    84
FindLib = \
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    85
    $(call FindLibDirForModule, \
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    86
        $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX)
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    87
49261
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    88
################################################################################
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    89
# Find a static library
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    90
# Param 1 - module name
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    91
# Param 2 - library name
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    92
# Param 3 - optional subdir for library
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    93
FindStaticLib = \
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    94
    $(addprefix $(SUPPORT_OUTPUTDIR)/native/, \
d5c43e9f08fb 8199745: JDK-8199668 introduced a build race on macosx
erikj
parents: 49244
diff changeset
    95
        $(strip $1)$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(STATIC_LIBRARY_SUFFIX))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    96
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    97
################################################################################
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    98
# Define the header include flags needed to compile against it.
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    99
LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java))
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
   100
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
   101
# Put the libraries here.
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
   102
INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE))
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
   103
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
   104
################################################################################