make/lib/Lib-jdk.jdwp.agent.gmk
author ihse
Wed, 28 Mar 2018 23:56:08 +0200
changeset 49440 396ea30afbd5
parent 49244 995a5556edfa
child 50471 f0aeede1b855
child 56421 92bea2b7732a
permissions -rw-r--r--
8200178: Remove mapfiles for JDK native libraries Reviewed-by: erikj, alanb, mchung, prr, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 49064
diff changeset
     2
# Copyright (c) 2011, 2018, 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
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    30
LIBDT_SOCKET_SRC := $(TOPDIR)/src/jdk.jdwp.agent/share/native/libdt_socket \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    31
    $(TOPDIR)/src/jdk.jdwp.agent/$(OPENJDK_TARGET_OS_TYPE)/native/libdt_socket
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    32
LIBDT_SOCKET_CPPFLAGS := \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    33
    $(addprefix -I, $(LIBDT_SOCKET_SRC)) \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    34
    -I$(TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp/export \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    35
    -I$(TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    36
    -I$(TOPDIR)/src/jdk.jdwp.agent/share/native/include \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    37
    #
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    38
49244
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49241
diff changeset
    39
$(eval $(call SetupJdkLibrary, BUILD_LIBDT_SOCKET, \
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 49064
diff changeset
    40
    NAME := dt_socket, \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    41
    SRC := $(LIBDT_SOCKET_SRC), \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    42
    OPTIMIZATION := LOW, \
31069
14be2fa211f6 8081616: Remove hard-coded CFLAGS_WARNINGS_ARE_ERRORS to fully respect --disable-warnings-as-errors
ihse
parents: 29931
diff changeset
    43
    CFLAGS := $(CFLAGS_JDKLIB) -DUSE_MMAP \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    44
        $(LIBDT_SOCKET_CPPFLAGS), \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    45
    LDFLAGS := $(LDFLAGS_JDKLIB) \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    46
        $(call SET_SHARED_LIBRARY_ORIGIN), \
33406
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    47
    LIBS_linux := -lpthread, \
49241
de4b3a04feae 8199606: Set -lc as global LIBS on solstudio
ihse
parents: 49070
diff changeset
    48
    LIBS_solaris := -lnsl -lsocket, \
33406
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    49
    LIBS_windows := $(JDKLIB_LIBS) ws2_32.lib, \
35276
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 35241
diff changeset
    50
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    51
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    52
$(BUILD_LIBDT_SOCKET): $(call FindLib, java.base, java)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    53
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    54
# Include socket transport with JDWP agent to allow for remote debugging
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    55
TARGETS += $(BUILD_LIBDT_SOCKET)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    56
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    57
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    58
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    59
LIBJDWP_SRC := $(TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    60
    $(TOPDIR)/src/jdk.jdwp.agent/$(OPENJDK_TARGET_OS_TYPE)/native/libjdwp
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    61
LIBJDWP_CPPFLAGS := \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    62
    -I$(TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp/export \
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    63
    -I$(TOPDIR)/src/jdk.jdwp.agent/share/native/include \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    64
    $(addprefix -I, $(LIBJDWP_SRC))
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    65
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    66
# JDWP_LOGGING causes log messages to be compiled into the library.
49244
995a5556edfa 8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents: 49241
diff changeset
    67
$(eval $(call SetupJdkLibrary, BUILD_LIBJDWP, \
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 49064
diff changeset
    68
    NAME := jdwp, \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    69
    SRC := $(LIBJDWP_SRC), \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    70
    OPTIMIZATION := LOW, \
31069
14be2fa211f6 8081616: Remove hard-coded CFLAGS_WARNINGS_ARE_ERRORS to fully respect --disable-warnings-as-errors
ihse
parents: 29931
diff changeset
    71
    CFLAGS := $(CFLAGS_JDKLIB) -DJDWP_LOGGING \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    72
        $(LIBJDWP_CPPFLAGS) \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    73
        -I$(SUPPORT_OUTPUTDIR)/headers/jdk.jdwp.agent, \
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    74
    LDFLAGS := $(LDFLAGS_JDKLIB) \
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    75
        $(call SET_SHARED_LIBRARY_ORIGIN), \
33518
3f1644328d06 8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents: 33406
diff changeset
    76
    LIBS := $(JDKLIB_LIBS), \
33406
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    77
    LIBS_linux := $(LIBDL), \
33518
3f1644328d06 8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents: 33406
diff changeset
    78
    LIBS_solaris := $(LIBDL), \
33406
4680f7495292 8140661: Rename LDFLAGS_SUFFIX to LIBS
ihse
parents: 31069
diff changeset
    79
    LIBS_macosx := -liconv, \
33518
3f1644328d06 8141290: AIX: fix build after '8140661: Rename LDFLAGS_SUFFIX to LIBS'
simonis
parents: 33406
diff changeset
    80
    LIBS_aix := -liconv, \
35276
50b3cdcef339 8145596: Enable debug symbols for all libraries
ihse
parents: 35241
diff changeset
    81
))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    82
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    83
$(BUILD_LIBJDWP): $(call FindLib, java.base, java)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    84
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
    85
TARGETS += $(BUILD_LIBJDWP)
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    86
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    87
################################################################################
33653
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
ifeq ($(STATIC_BUILD), true)
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 := \
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
    91
      $(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
    92
      $(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
    93
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
    94
  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
    95
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
    96
  $(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
    97
	$(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
    98
	$(CAT) $^ > $@
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
    99
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
   100
  # 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
   101
  $(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
   102
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
   103
  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
   104
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
   105
endif
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
   106
c1ee09fe3274 8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents: 31069
diff changeset
   107
################################################################################