author | jprtadm |
Tue, 13 Feb 2018 15:23:08 +0100 | |
branch | ihse-remove-mapfiles-branch |
changeset 56116 | 0bad0488e9fa |
parent 56113 | 02cec376750e |
child 56721 | 01b558efd286 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
35781 | 2 |
# Copyright (c) 2011, 2016, 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 |
||
26 |
include NativeCompilation.gmk |
|
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 |
|
35 |
# Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more |
|
36 |
# elegant solution to this. |
|
27565 | 37 |
WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib |
25859 | 38 |
|
56106 | 39 |
DISABLE_MAPFILES := true |
40 |
||
35781 | 41 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), macosx windows), ) |
42 |
DISABLE_MAPFILES := true |
|
43 |
endif |
|
44 |
||
25859 | 45 |
################################################################################ |
46 |
# Find the default set of src dirs for a native library. |
|
47 |
# Param 1 - module name |
|
48 |
# 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
|
49 |
FindSrcDirsForLib += \ |
27565 | 50 |
$(call uniq, $(wildcard \ |
47217 | 51 |
$(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS)/native/lib$(strip $2) \ |
52 |
$(TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS_TYPE)/native/lib$(strip $2) \ |
|
53 |
$(TOPDIR)/src/$(strip $1)/share/native/lib$(strip $2))) |
|
25859 | 54 |
|
55 |
################################################################################ |
|
27565 | 56 |
# Find a library |
57 |
# Param 1 - module name |
|
58 |
# Param 2 - library name |
|
59 |
# Param 3 - subdir for library |
|
28307
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
60 |
FindLib = \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
61 |
$(call FindLibDirForModule, \ |
ddfb652c7496
8067060: build can still fail with spaces following -L on link lines
erikj
parents:
27944
diff
changeset
|
62 |
$(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
|
63 |
|
25859 | 64 |
|
27565 | 65 |
################################################################################ |
66 |
# Define the header include flags needed to compile against it. |
|
25859 | 67 |
LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java)) |
68 |
||
27565 | 69 |
# Put the libraries here. |
70 |
INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE)) |
|
71 |
||
25859 | 72 |
################################################################################ |