111 lines
4.4 KiB
Plaintext
111 lines
4.4 KiB
Plaintext
|
#
|
||
|
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
|
||
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||
|
#
|
||
|
# This code is free software; you can redistribute it and/or modify it
|
||
|
# under the terms of the GNU General Public License version 2 only, as
|
||
|
# published by the Free Software Foundation. Oracle designates this
|
||
|
# particular file as subject to the "Classpath" exception as provided
|
||
|
# by Oracle in the LICENSE file that accompanied this code.
|
||
|
#
|
||
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
||
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
# version 2 for more details (a copy is included in the LICENSE file that
|
||
|
# accompanied this code).
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License version
|
||
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
||
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||
|
#
|
||
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||
|
# or visit www.oracle.com if you need additional information or have any
|
||
|
# questions.
|
||
|
#
|
||
|
|
||
|
include LibCommon.gmk
|
||
|
|
||
|
################################################################################
|
||
|
|
||
|
LIBDT_SOCKET_SRC := $(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/libdt_socket \
|
||
|
$(JDK_TOPDIR)/src/jdk.jdwp.agent/$(OPENJDK_TARGET_OS_API_DIR)/native/libdt_socket
|
||
|
LIBDT_SOCKET_CPPFLAGS := \
|
||
|
$(addprefix -I, $(LIBDT_SOCKET_SRC)) \
|
||
|
-I$(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp/export \
|
||
|
-I$(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp \
|
||
|
-I$(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/include \
|
||
|
#
|
||
|
|
||
|
$(eval $(call SetupNativeCompilation,BUILD_LIBDT_SOCKET, \
|
||
|
LIBRARY := dt_socket, \
|
||
|
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
|
||
|
SRC := $(LIBDT_SOCKET_SRC), \
|
||
|
LANG := C, \
|
||
|
OPTIMIZATION := LOW, \
|
||
|
CFLAGS := $(CFLAGS_JDKLIB) $(CFLAGS_CFLAGS_WARNINGS_ARE_ERRORS) -DUSE_MMAP \
|
||
|
$(LIBDT_SOCKET_CPPFLAGS), \
|
||
|
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libdt_socket/mapfile-vers, \
|
||
|
LDFLAGS := $(LDFLAGS_JDKLIB) \
|
||
|
$(call SET_SHARED_LIBRARY_ORIGIN), \
|
||
|
LDFLAGS_SUFFIX_linux := -lpthread, \
|
||
|
LDFLAGS_SUFFIX_solaris := -lnsl -lsocket -lc, \
|
||
|
LDFLAGS_SUFFIX_windows := $(LDFLAGS_JDKLIB_SUFFIX) -export:jdwpTransport_OnLoad ws2_32.lib, \
|
||
|
VERSIONINFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE), \
|
||
|
RC_FLAGS := $(RC_FLAGS) \
|
||
|
-D "JDK_FNAME=dt_socket.dll" \
|
||
|
-D "JDK_INTERNAL_NAME=dt_socket" \
|
||
|
-D "JDK_FTYPE=0x2L", \
|
||
|
OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/libdt_socket, \
|
||
|
DEBUG_SYMBOLS := true))
|
||
|
|
||
|
$(BUILD_LIBDT_SOCKET): $(BUILD_LIBJAVA)
|
||
|
|
||
|
# Include socket transport with JDWP agent to allow for remote debugging
|
||
|
JDWP_LIBRARIES += $(BUILD_LIBDT_SOCKET)
|
||
|
|
||
|
################################################################################
|
||
|
|
||
|
LIBJDWP_SRC := $(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp \
|
||
|
$(JDK_TOPDIR)/src/jdk.jdwp.agent/$(OPENJDK_TARGET_OS_API_DIR)/native/libjdwp
|
||
|
LIBJDWP_CPPFLAGS := \
|
||
|
-I$(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/libjdwp/export \
|
||
|
-I$(JDK_TOPDIR)/src/jdk.jdwp.agent/share/native/include \
|
||
|
$(addprefix -I, $(LIBJDWP_SRC))
|
||
|
|
||
|
# JDWP_LOGGING causes log messages to be compiled into the library.
|
||
|
$(eval $(call SetupNativeCompilation,BUILD_LIBJDWP, \
|
||
|
LIBRARY := jdwp, \
|
||
|
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \
|
||
|
SRC := $(LIBJDWP_SRC), \
|
||
|
LANG := C, \
|
||
|
OPTIMIZATION := LOW, \
|
||
|
CFLAGS := $(CFLAGS_JDKLIB) $(CFLAGS_WARNINGS_ARE_ERRORS) -DJDWP_LOGGING \
|
||
|
$(LIBJDWP_CPPFLAGS) \
|
||
|
-I$(JDK_OUTPUTDIR)/gensrc_jdwp_headers, \
|
||
|
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libjdwp/mapfile-vers, \
|
||
|
LDFLAGS := $(LDFLAGS_JDKLIB) \
|
||
|
$(call SET_SHARED_LIBRARY_ORIGIN), \
|
||
|
LDFLAGS_SUFFIX_linux := $(LIBDL), \
|
||
|
LDFLAGS_SUFFIX_solaris := $(LIBDL) -lc, \
|
||
|
LDFLAGS_SUFFIX_windows := $(LDFLAGS_JDKLIB_SUFFIX), \
|
||
|
LDFLAGS_SUFFIX_macosx := -liconv, \
|
||
|
VERSIONINFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE), \
|
||
|
RC_FLAGS := $(RC_FLAGS) \
|
||
|
-D "JDK_FNAME=jdwp.dll" \
|
||
|
-D "JDK_INTERNAL_NAME=jdwp" \
|
||
|
-D "JDK_FTYPE=0x2L", \
|
||
|
OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/libjdwp, \
|
||
|
DEBUG_SYMBOLS := true))
|
||
|
|
||
|
$(BUILD_LIBJDWP): $(BUILD_LIBJAVA)
|
||
|
|
||
|
JDWP_LIBRARIES += $(BUILD_LIBJDWP)
|
||
|
|
||
|
################################################################################
|
||
|
|
||
|
jdk.jdwp.agent: $(JDWP_LIBRARIES)
|
||
|
|
||
|
all: jdk.jdwp.agent
|
||
|
|
||
|
.PHONY: all jdk.jdwp.agent
|