author | chegar |
Wed, 03 Dec 2014 19:28:35 +0000 | |
changeset 27799 | 097b1d6f6894 |
parent 27565 | 729f9700483a |
parent 27736 | 8c9bd4be4a86 |
child 29931 | 64e274ed6567 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
|
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 |
||
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
30 |
ifeq ($(OPENJDK_TARGET_OS_TYPE), unix) |
25859 | 31 |
|
32 |
ifeq (, $(filter $(OPENJDK_TARGET_OS), macosx aix)) |
|
33 |
||
34 |
# Suppress unused parameters required by exported JNI functions. |
|
35 |
SCTP_WERROR := -Werror -Wno-error=unused-parameter |
|
36 |
ifeq ($(OPENJDK_TARGET_CPU_ARCH), ppc) |
|
37 |
SCTP_WERROR := |
|
38 |
endif |
|
39 |
||
40 |
$(eval $(call SetupNativeCompilation,BUILD_LIBSCTP, \ |
|
41 |
LIBRARY := sctp, \ |
|
42 |
OUTPUT_DIR := $(INSTALL_LIBRARIES_HERE), \ |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
43 |
SRC := $(JDK_TOPDIR)/src/jdk.sctp/$(OPENJDK_TARGET_OS_TYPE)/native/libsctp, \ |
25859 | 44 |
LANG := C, \ |
45 |
OPTIMIZATION := LOW, \ |
|
46 |
CFLAGS := $(CFLAGS_JDKLIB) \ |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
47 |
-I $(JDK_TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/native/libnio/ch \ |
25859 | 48 |
-I $(JDK_TOPDIR)/src/java.base/share/native/libnio/ch \ |
49 |
$(addprefix -I, $(call FindSrcDirsForLib, java.base, net)) \ |
|
50 |
$(LIBJAVA_HEADER_FLAGS) \ |
|
27565 | 51 |
-I$(SUPPORT_OUTPUTDIR)/headers/jdk.sctp \ |
52 |
-I$(SUPPORT_OUTPUTDIR)/headers/java.base, \ |
|
25859 | 53 |
CFLAGS_linux := $(SCTP_WERROR), \ |
54 |
MAPFILE := $(JDK_TOPDIR)/make/mapfiles/libsctp/mapfile-vers, \ |
|
55 |
LDFLAGS := $(LDFLAGS_JDKLIB) \ |
|
56 |
$(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
57 |
LDFLAGS_SUFFIX_linux := -lpthread $(LIBDL) -ljava -ljvm, \ |
|
27736
8c9bd4be4a86
8058631: Rename posix to unix in build system to match file name changes
ihse
parents:
25859
diff
changeset
|
58 |
LDFLAGS_SUFFIX_unix := -lnio -lnet, \ |
25859 | 59 |
LDFLAGS_SUFFIX_solaris := -lsocket -ljava -ljvm -lc, \ |
60 |
LDFLAGS_SUFFIX_macosx := -ljava -ljvm, \ |
|
27565 | 61 |
OBJECT_DIR := $(SUPPORT_OUTPUTDIR)/native/$(MODULE)/libsctp, \ |
25859 | 62 |
DEBUG_SYMBOLS := $(DEBUG_ALL_BINARIES))) |
63 |
||
27565 | 64 |
TARGETS += $(BUILD_LIBSCTP) |
25859 | 65 |
|
27565 | 66 |
$(BUILD_LIBSCTP): $(call FindLib, java.base, nio) |
25859 | 67 |
endif |
68 |
endif |
|
69 |
||
70 |
################################################################################ |