author | simonis |
Fri, 29 Aug 2014 12:00:31 +0200 | |
changeset 26225 | 3c7e92c78bab |
parent 25859 | 3317bb8137f4 |
child 27736 | 8c9bd4be4a86 |
child 27565 | 729f9700483a |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
16476
e269be167fae
8001334: Remove use of JVM_* functions from java.io code
dxu
parents:
15676
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
25859 | 26 |
LIBNET_SRC_DIRS := $(JDK_TOPDIR)/src/java.base/share/native/libnet \ |
27 |
$(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_API_DIR)/native/libnet |
|
28 |
LIBNET_CFLAGS += -I$(JDK_OUTPUTDIR)/gensrc_headers/java.base \ |
|
29 |
$(LIBJAVA_HEADER_FLAGS) |
|
20547 | 30 |
|
25859 | 31 |
LIBNET_CFLAGS += $(foreach dir, $(LIBNET_SRC_DIRS), -I$(dir)) |
20547 | 32 |
|
33 |
LIBNET_EXCLUDE_FILES := |
|
23015
73b21ab36615
8034174: Remove use of JVM_* functions from java.net code
chegar
parents:
22607
diff
changeset
|
34 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
73b21ab36615
8034174: Remove use of JVM_* functions from java.net code
chegar
parents:
22607
diff
changeset
|
35 |
LIBNET_EXCLUDE_FILES += solaris_close.c |
73b21ab36615
8034174: Remove use of JVM_* functions from java.net code
chegar
parents:
22607
diff
changeset
|
36 |
endif |
73b21ab36615
8034174: Remove use of JVM_* functions from java.net code
chegar
parents:
22607
diff
changeset
|
37 |
|
20547 | 38 |
ifneq ($(OPENJDK_TARGET_OS), linux) |
39 |
LIBNET_EXCLUDE_FILES += linux_close.c |
|
40 |
endif |
|
41 |
||
42 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
|
43 |
LIBNET_EXCLUDE_FILES += bsd_close.c |
|
44 |
endif |
|
45 |
||
22597
7515a991bb37
8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents:
22595
diff
changeset
|
46 |
ifeq ($(OPENJDK_TARGET_OS), aix) |
26225
3c7e92c78bab
8056246: Fix AIX build after the Modular Source Code change 8054834
simonis
parents:
25859
diff
changeset
|
47 |
LIBNET_SRC_DIRS += $(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS)/native/libnet/java/net/ |
22597
7515a991bb37
8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents:
22595
diff
changeset
|
48 |
endif |
7515a991bb37
8024854: PPC64: Basic changes and files to build the class library on AIX
simonis
parents:
22595
diff
changeset
|
49 |
|
20547 | 50 |
$(eval $(call SetupNativeCompilation,BUILD_LIBNET, \ |
51 |
LIBRARY := net, \ |
|
52 |
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \ |
|
53 |
SRC := $(LIBNET_SRC_DIRS), \ |
|
54 |
EXCLUDE_FILES := $(LIBNET_EXCLUDE_FILES), \ |
|
55 |
LANG := C, \ |
|
56 |
OPTIMIZATION := LOW, \ |
|
57 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
58 |
$(LIBNET_CFLAGS), \ |
|
21805 | 59 |
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libnet/mapfile-vers, \ |
20547 | 60 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
61 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
62 |
LDFLAGS_SUFFIX_macosx := -ljvm -ljava, \ |
|
63 |
LDFLAGS_SUFFIX_solaris := -ljvm -ljava -lnsl -lsocket $(LIBDL) -lc, \ |
|
64 |
LDFLAGS_SUFFIX_linux := $(LIBDL) -ljvm -lpthread -ljava, \ |
|
22595
aaa6b141196c
8028066: PPC64: 8025715 changes broke AIX build after sync
simonis
parents:
22594
diff
changeset
|
65 |
LDFLAGS_SUFFIX_aix := $(LIBDL) -ljvm -ljava,\ |
20547 | 66 |
LDFLAGS_SUFFIX_windows := ws2_32.lib jvm.lib secur32.lib iphlpapi.lib \ |
67 |
delayimp.lib $(WIN_JAVA_LIB) advapi32.lib \ |
|
68 |
-DELAYLOAD:secur32.dll -DELAYLOAD:iphlpapi.dll, \ |
|
25859 | 69 |
VERSIONINFO_RESOURCE := $(GLOBAL_VERSION_INFO_RESOURCE), \ |
20547 | 70 |
RC_FLAGS := $(RC_FLAGS) \ |
71 |
-D "JDK_FNAME=net.dll" \ |
|
72 |
-D "JDK_INTERNAL_NAME=net" \ |
|
73 |
-D "JDK_FTYPE=0x2L", \ |
|
74 |
OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/libnet, \ |
|
75 |
DEBUG_SYMBOLS := $(DEBUG_ALL_BINARIES))) |
|
76 |
||
77 |
$(BUILD_LIBNET): $(BUILD_LIBJAVA) |
|
78 |
||
25859 | 79 |
BASE_LIBRARIES += $(BUILD_LIBNET) |
20547 | 80 |