author | erikj |
Fri, 17 Apr 2015 13:55:42 +0200 | |
changeset 29931 | 64e274ed6567 |
parent 29817 | f2832da6a04a |
child 30365 | 551470085a1d |
permissions | -rw-r--r-- |
25859 | 1 |
# |
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
|
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 LibCommon.gmk |
|
27 |
||
26869
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
28 |
# Hook to include the corresponding custom file, if present. |
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
29 |
$(eval $(call IncludeCustomExtension, jdk, lib/Lib-java.management.gmk)) |
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
30 |
|
25859 | 31 |
################################################################################ |
32 |
||
26869
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
33 |
BUILD_LIBMANAGEMENT_SRC += $(JDK_TOPDIR)/src/java.management/share/native/libmanagement \ |
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
26869
diff
changeset
|
34 |
$(JDK_TOPDIR)/src/java.management/$(OPENJDK_TARGET_OS_TYPE)/native/libmanagement |
25859 | 35 |
BUILD_LIBMANAGEMENT_CFLAGS := -I$(JDK_TOPDIR)/src/java.management/share/native/include \ |
36 |
$(addprefix -I,$(BUILD_LIBMANAGEMENT_SRC)) \ |
|
27565 | 37 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.management \ |
25859 | 38 |
$(LIBJAVA_HEADER_FLAGS) \ |
39 |
# |
|
40 |
||
29817
f2832da6a04a
8076557: The specified procedure could not be found in management.dll
erikj
parents:
27799
diff
changeset
|
41 |
# In (at least) VS2013 and later, -DPSAPI_VERSION=1 is needed to generate |
f2832da6a04a
8076557: The specified procedure could not be found in management.dll
erikj
parents:
27799
diff
changeset
|
42 |
# a binary that is compatible with windows versions older than 7/2008R2. |
f2832da6a04a
8076557: The specified procedure could not be found in management.dll
erikj
parents:
27799
diff
changeset
|
43 |
# See MSDN documentation for GetProcessMemoryInfo for more information. |
f2832da6a04a
8076557: The specified procedure could not be found in management.dll
erikj
parents:
27799
diff
changeset
|
44 |
BUILD_LIBMANAGEMENT_CFLAGS += -DPSAPI_VERSION=1 |
f2832da6a04a
8076557: The specified procedure could not be found in management.dll
erikj
parents:
27799
diff
changeset
|
45 |
|
25859 | 46 |
BUILD_LIBMANAGEMENT_EXCLUDES := |
47 |
||
48 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
|
49 |
BUILD_LIBMANAGEMENT_EXCLUDES += SolarisOperatingSystem.c |
|
50 |
endif |
|
51 |
||
52 |
ifneq ($(OPENJDK_TARGET_OS), linux) |
|
53 |
BUILD_LIBMANAGEMENT_EXCLUDES += LinuxOperatingSystem.c |
|
54 |
endif |
|
55 |
||
56 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
|
57 |
BUILD_LIBMANAGEMENT_EXCLUDES += MacosxOperatingSystem.c |
|
58 |
endif |
|
59 |
||
60 |
LIBMANAGEMENT_OPTIMIZATION := HIGH |
|
61 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), solaris linux), ) |
|
62 |
ifeq ($(ENABLE_DEBUG_SYMBOLS), true) |
|
63 |
LIBMANAGEMENT_OPTIMIZATION := LOW |
|
64 |
endif |
|
65 |
endif |
|
66 |
||
26869
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
67 |
# Make it possible to override this variable |
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
68 |
LIBMANAGEMENT_MAPFILE ?= $(JDK_TOPDIR)/make/mapfiles/libmanagement/mapfile-vers |
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
69 |
|
25859 | 70 |
$(eval $(call SetupNativeCompilation,BUILD_LIBMANAGEMENT, \ |
71 |
LIBRARY := management, \ |
|
72 |
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \ |
|
73 |
SRC := $(BUILD_LIBMANAGEMENT_SRC), \ |
|
74 |
EXCLUDE_FILES := $(BUILD_LIBMANAGEMENT_EXCLUDES), \ |
|
75 |
OPTIMIZATION := $(LIBMANAGEMENT_OPTIMIZATION), \ |
|
76 |
CFLAGS := $(CFLAGS_JDKLIB) $(CFLAGS_WARNINGS_ARE_ERRORS) $(BUILD_LIBMANAGEMENT_CFLAGS), \ |
|
26869
190d4684056d
8055006: Store original value of Min/MaxHeapFreeRatio
jwilhelm
parents:
25859
diff
changeset
|
77 |
MAPFILE := $(LIBMANAGEMENT_MAPFILE), \ |
25859 | 78 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
79 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
80 |
LDFLAGS_solaris := -lkstat, \ |
|
81 |
LDFLAGS_SUFFIX := $(LDFLAGS_JDKLIB_SUFFIX), \ |
|
82 |
LDFLAGS_SUFFIX_windows := jvm.lib psapi.lib $(WIN_JAVA_LIB) advapi32.lib, \ |
|
83 |
LDFLAGS_SUFFIX_aix := -lperfstat,\ |
|
84 |
VERSIONINFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE), \ |
|
85 |
RC_FLAGS := $(RC_FLAGS) \ |
|
86 |
-D "JDK_FNAME=management.dll" \ |
|
87 |
-D "JDK_INTERNAL_NAME=management" \ |
|
88 |
-D "JDK_FTYPE=0x2L", \ |
|
27565 | 89 |
OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libmanagement, \ |
25859 | 90 |
DEBUG_SYMBOLS := true)) |
91 |
||
27565 | 92 |
$(BUILD_LIBMANAGEMENT): $(call FindLib, java.base, java) |
25859 | 93 |
|
27565 | 94 |
TARGETS += $(BUILD_LIBMANAGEMENT) |
25859 | 95 |
|
96 |
################################################################################ |