author | anazarov |
Thu, 05 Apr 2018 17:04:16 -0700 | |
changeset 49538 | 707553fcca04 |
parent 49440 | 396ea30afbd5 |
child 50126 | 98f57dff16f3 |
child 56421 | 92bea2b7732a |
permissions | -rw-r--r-- |
25859 | 1 |
# |
49239 | 2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
25859 | 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 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49239
diff
changeset
|
26 |
include JdkNativeCompilation.gmk |
25859 | 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 | 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 | 33 |
GLOBAL_VERSION_INFO_RESOURCE := $(TOPDIR)/src/java.base/windows/native/common/version.rc |
25859 | 34 |
|
49239 | 35 |
# Absolute paths to lib files on windows for use in LIBS. Should figure out a more |
25859 | 36 |
# elegant solution to this. |
27565 | 37 |
WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib |
25859 | 38 |
|
49440 | 39 |
# Tell the compiler not to export any functions unless declared so in |
40 |
# the source code. On Windows, this is the default and cannot be changed. |
|
41 |
# On Mac, we have always exported all symbols, probably due to oversight |
|
42 |
# and/or misunderstanding. To emulate this, don't hide any symbols |
|
43 |
# by default. |
|
44 |
# Also provide an override for non-conformant libraries. |
|
45 |
ifeq ($(TOOLCHAIN_TYPE), gcc) |
|
46 |
CFLAGS_JDKLIB += -fvisibility=hidden |
|
47 |
CXXFLAGS_JDKLIB += -fvisibility=hidden |
|
48 |
LDFLAGS_JDKLIB += -Wl,--exclude-libs,ALL |
|
49 |
EXPORT_ALL_SYMBOLS := -fvisibility=default |
|
50 |
else ifeq ($(TOOLCHAIN_TYPE), clang) |
|
51 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
|
52 |
CFLAGS_JDKLIB += -fvisibility=hidden |
|
53 |
CXXFLAGS_JDKLIB += -fvisibility=hidden |
|
54 |
EXPORT_ALL_SYMBOLS := -fvisibility=default |
|
55 |
endif |
|
56 |
else ifeq ($(TOOLCHAIN_TYPE), solstudio) |
|
57 |
CFLAGS_JDKLIB += -xldscope=hidden |
|
58 |
CXXFLAGS_JDKLIB += -xldscope=hidden |
|
59 |
EXPORT_ALL_SYMBOLS := -xldscope=global |
|
60 |
else ifeq ($(TOOLCHAIN_TYPE), xlc) |
|
61 |
CFLAGS_JDKLIB += -qvisibility=hidden |
|
62 |
CXXFLAGS_JDKLIB += -qvisibility=hidden |
|
63 |
EXPORT_ALL_SYMBOLS := -qvisibility=default |
|
35781 | 64 |
endif |
65 |
||
25859 | 66 |
################################################################################ |
67 |
# Find the default set of src dirs for a native library. |
|
68 |
# Param 1 - module name |
|
69 |
# 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
|
70 |
FindSrcDirsForLib += \ |
27565 | 71 |
$(call uniq, $(wildcard \ |
47217 | 72 |
$(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS)/native/lib$(strip $2) \ |
73 |
$(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS_TYPE)/native/lib$(strip $2) \ |
|
74 |
$(TOPDIR)/src/$(strip $1)/share/native/lib$(strip $2))) |
|
25859 | 75 |
|
76 |
################################################################################ |
|
27565 | 77 |
# Find a library |
78 |
# Param 1 - module name |
|
79 |
# Param 2 - library name |
|
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
80 |
# 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
|
81 |
FindLib = \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
82 |
$(call FindLibDirForModule, \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
83 |
$(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
|
84 |
|
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
85 |
################################################################################ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
86 |
# Find a static library |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
87 |
# Param 1 - module name |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
88 |
# Param 2 - library name |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
89 |
# Param 3 - optional subdir for library |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
90 |
FindStaticLib = \ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
91 |
$(addprefix $(SUPPORT_OUTPUTDIR)/native/, \ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
92 |
$(strip $1)$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(STATIC_LIBRARY_SUFFIX)) |
25859 | 93 |
|
27565 | 94 |
################################################################################ |
95 |
# Define the header include flags needed to compile against it. |
|
25859 | 96 |
LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java)) |
97 |
||
27565 | 98 |
# Put the libraries here. |
99 |
INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE)) |
|
100 |
||
25859 | 101 |
################################################################################ |