author | rschmelter |
Wed, 17 Apr 2019 01:21:56 -0700 | |
changeset 54649 | 73a87b1aacc2 |
parent 51853 | ec62d6cab037 |
child 58876 | 1a8d65e71a66 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
54649
73a87b1aacc2
8222529: sun.jdwp.listenerAddress agent property uses wrong encoding
rschmelter
parents:
51853
diff
changeset
|
2 |
# Copyright (c) 2011, 2019, 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 LibCommon.gmk |
|
27 |
||
28 |
################################################################################ |
|
29 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
30 |
$(eval $(call SetupJdkLibrary, BUILD_LIBDT_SOCKET, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
49064
diff
changeset
|
31 |
NAME := dt_socket, \ |
25859 | 32 |
OPTIMIZATION := LOW, \ |
51324
10ef3d870cb7
8208744: remove unneeded -DUSE_MMAP settings for JDK native libs builds
mbaesken
parents:
50471
diff
changeset
|
33 |
CFLAGS := $(CFLAGS_JDKLIB) $(LIBDT_SOCKET_CPPFLAGS), \ |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
34 |
EXTRA_HEADER_DIRS := \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
35 |
include \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
36 |
libjdwp/export, \ |
25859 | 37 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
38 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 39 |
LIBS_linux := -lpthread, \ |
49241 | 40 |
LIBS_solaris := -lnsl -lsocket, \ |
33406 | 41 |
LIBS_windows := $(JDKLIB_LIBS) ws2_32.lib, \ |
35276 | 42 |
)) |
25859 | 43 |
|
27565 | 44 |
$(BUILD_LIBDT_SOCKET): $(call FindLib, java.base, java) |
25859 | 45 |
|
46 |
# Include socket transport with JDWP agent to allow for remote debugging |
|
27565 | 47 |
TARGETS += $(BUILD_LIBDT_SOCKET) |
25859 | 48 |
|
49 |
################################################################################ |
|
50 |
||
51 |
# JDWP_LOGGING causes log messages to be compiled into the library. |
|
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
52 |
$(eval $(call SetupJdkLibrary, BUILD_LIBJDWP, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
49064
diff
changeset
|
53 |
NAME := jdwp, \ |
25859 | 54 |
OPTIMIZATION := LOW, \ |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
55 |
CFLAGS := $(CFLAGS_JDKLIB) -DJDWP_LOGGING, \ |
51853
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51324
diff
changeset
|
56 |
DISABLED_WARNINGS_gcc := unused-function, \ |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51324
diff
changeset
|
57 |
DISABLED_WARNINGS_clang := sometimes-uninitialized format-nonliteral \ |
ec62d6cab037
8211029: Have a common set of enabled warnings for all native libraries
ihse
parents:
51324
diff
changeset
|
58 |
self-assign, \ |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
59 |
EXTRA_HEADER_DIRS := \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
60 |
include \ |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
61 |
libjdwp/export, \ |
25859 | 62 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
63 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33518
3f1644328d06
8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents:
33406
diff
changeset
|
64 |
LIBS := $(JDKLIB_LIBS), \ |
33406 | 65 |
LIBS_linux := $(LIBDL), \ |
33518
3f1644328d06
8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents:
33406
diff
changeset
|
66 |
LIBS_solaris := $(LIBDL), \ |
33406 | 67 |
LIBS_macosx := -liconv, \ |
33518
3f1644328d06
8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents:
33406
diff
changeset
|
68 |
LIBS_aix := -liconv, \ |
54649
73a87b1aacc2
8222529: sun.jdwp.listenerAddress agent property uses wrong encoding
rschmelter
parents:
51853
diff
changeset
|
69 |
LIBS_windows := $(WIN_JAVA_LIB), \ |
35276 | 70 |
)) |
25859 | 71 |
|
27565 | 72 |
$(BUILD_LIBJDWP): $(call FindLib, java.base, java) |
25859 | 73 |
|
27565 | 74 |
TARGETS += $(BUILD_LIBJDWP) |
25859 | 75 |
|
76 |
################################################################################ |
|
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
77 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
78 |
ifeq ($(STATIC_BUILD), true) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
79 |
JDK_JDWP_AGENT_EXPORT_SYMBOLS_SRC := \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
80 |
$(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/$(LIBRARY_PREFIX)dt_socket.symbols \ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
81 |
$(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/$(LIBRARY_PREFIX)jdwp.symbols |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
82 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
83 |
JDK_JDWP_AGENT_EXPORT_SYMBOL_FILE := $(SUPPORT_OUTPUTDIR)/modules_libs/jdk.jdwp.agent/jdk.jdwp.agent.symbols |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
84 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
85 |
$(JDK_JDWP_AGENT_EXPORT_SYMBOL_FILE): $(JDK_JDWP_AGENT_EXPORT_SYMBOLS_SRC) |
35241 | 86 |
$(call LogInfo, Generating jdk.jdwp.agent symbols file) |
33653
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
87 |
$(CAT) $^ > $@ |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
88 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
89 |
# The individual symbol files is generated when the respective lib is built |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
90 |
$(JDK_JDWP_AGENT_EXPORT_SYMBOLS_SRC): $(BUILD_LIBDT_SOCKET) $(BUILD_LIBJDWP) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
91 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
92 |
TARGETS += $(JDK_JDWP_AGENT_EXPORT_SYMBOL_FILE) |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
93 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
94 |
endif |
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
95 |
|
c1ee09fe3274
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
31069
diff
changeset
|
96 |
################################################################################ |