author | ihse |
Mon, 24 Sep 2018 20:45:06 +0200 | |
changeset 51855 | 8bbb5cbac92c |
parent 50471 | f0aeede1b855 |
child 52022 | 804792ce736f |
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 |
################################################################################ |
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
|
29 |
|
47217 | 30 |
GLOBAL_VERSION_INFO_RESOURCE := $(TOPDIR)/src/java.base/windows/native/common/version.rc |
25859 | 31 |
|
49239 | 32 |
# Absolute paths to lib files on windows for use in LIBS. Should figure out a more |
25859 | 33 |
# elegant solution to this. |
27565 | 34 |
WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib |
25859 | 35 |
|
49440 | 36 |
# Tell the compiler not to export any functions unless declared so in |
37 |
# the source code. On Windows, this is the default and cannot be changed. |
|
38 |
# On Mac, we have always exported all symbols, probably due to oversight |
|
39 |
# and/or misunderstanding. To emulate this, don't hide any symbols |
|
40 |
# by default. |
|
50126
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
41 |
# On AIX/xlc we need at least xlc 13.1 for the symbol hiding |
49440 | 42 |
# Also provide an override for non-conformant libraries. |
43 |
ifeq ($(TOOLCHAIN_TYPE), gcc) |
|
44 |
CFLAGS_JDKLIB += -fvisibility=hidden |
|
45 |
CXXFLAGS_JDKLIB += -fvisibility=hidden |
|
46 |
LDFLAGS_JDKLIB += -Wl,--exclude-libs,ALL |
|
47 |
EXPORT_ALL_SYMBOLS := -fvisibility=default |
|
48 |
else ifeq ($(TOOLCHAIN_TYPE), clang) |
|
51855 | 49 |
CFLAGS_JDKLIB += -fvisibility=hidden |
50 |
CXXFLAGS_JDKLIB += -fvisibility=hidden |
|
51 |
EXPORT_ALL_SYMBOLS := -fvisibility=default |
|
49440 | 52 |
else ifeq ($(TOOLCHAIN_TYPE), solstudio) |
53 |
CFLAGS_JDKLIB += -xldscope=hidden |
|
54 |
CXXFLAGS_JDKLIB += -xldscope=hidden |
|
55 |
EXPORT_ALL_SYMBOLS := -xldscope=global |
|
56 |
else ifeq ($(TOOLCHAIN_TYPE), xlc) |
|
50126
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
57 |
ifneq ($(CC_VERSION_NUMBER), 12.1) |
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
58 |
CFLAGS_JDKLIB += -qvisibility=hidden |
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
59 |
CXXFLAGS_JDKLIB += -qvisibility=hidden |
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
60 |
EXPORT_ALL_SYMBOLS := -qvisibility=default |
98f57dff16f3
8202322: AIX: symbol visibility flags not support on xlc 12.1
mbaesken
parents:
49440
diff
changeset
|
61 |
endif |
35781 | 62 |
endif |
63 |
||
25859 | 64 |
################################################################################ |
27565 | 65 |
# Find a library |
66 |
# Param 1 - module name |
|
67 |
# Param 2 - library name |
|
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
68 |
# 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
|
69 |
FindLib = \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
70 |
$(call FindLibDirForModule, \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
71 |
$(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
|
72 |
|
49261
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
73 |
################################################################################ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
74 |
# Find a static library |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
75 |
# Param 1 - module name |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
76 |
# Param 2 - library name |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
77 |
# Param 3 - optional subdir for library |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
78 |
FindStaticLib = \ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
79 |
$(addprefix $(SUPPORT_OUTPUTDIR)/native/, \ |
d5c43e9f08fb
8199745: JDK-8199668 introduced a build race on macosx
erikj
parents:
49244
diff
changeset
|
80 |
$(strip $1)$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(STATIC_LIBRARY_SUFFIX)) |
25859 | 81 |
|
27565 | 82 |
# Put the libraries here. |
83 |
INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE)) |
|
84 |
||
25859 | 85 |
################################################################################ |