make/lib/Lib-jdk.jdwp.agent.gmk
author jlaskey
Thu, 14 Nov 2019 12:50:08 -0400
branchJDK-8193209-branch
changeset 59088 da026c172c1e
parent 58876 1a8d65e71a66
permissions -rw-r--r--
add missing files
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     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
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     4
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    10
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    15
# accompanied this code).
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    16
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    20
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    23
# questions.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    24
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    25
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    26
include LibCommon.gmk
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    28
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    37
    LDFLAGS := $(LDFLAGS_JDKLIB) \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    38
        $(call SET_SHARED_LIBRARY_ORIGIN), \
33406
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    39
    LIBS_linux := -lpthread, \
49241
de4b3a04feae 8199606: Set -lc as global LIBS on solstudio
ihse
parents: 49070
diff changeset
    40
    LIBS_solaris := -lnsl -lsocket, \
58876
1a8d65e71a66 8224159: JDWP IPv6 scope support
amenkov
parents: 54649
diff changeset
    41
    LIBS_windows := $(JDKLIB_LIBS) ws2_32.lib iphlpapi.lib, \
35276
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 35241
diff changeset
    42
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    43
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    44
$(BUILD_LIBDT_SOCKET): $(call FindLib, java.base, java)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    45
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    46
# Include socket transport with JDWP agent to allow for remote debugging
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    47
TARGETS += $(BUILD_LIBDT_SOCKET)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    48
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    49
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    50
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    62
    LDFLAGS := $(LDFLAGS_JDKLIB) \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    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
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    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
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 35241
diff changeset
    70
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    71
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    72
$(BUILD_LIBJDWP): $(call FindLib, java.base, java)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    73
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    74
TARGETS += $(BUILD_LIBJDWP)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    75
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    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
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 33666
diff changeset
    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
################################################################################