author | xuelei |
Mon, 25 Jun 2018 13:02:39 -0700 | |
branch | JDK-8145252-TLS13-branch |
changeset 56808 | d4844278d72c |
parent 50471 | f0aeede1b855 |
child 51821 | 844cd8887372 |
child 56721 | 01b558efd286 |
permissions | -rw-r--r-- |
25859 | 1 |
# |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
2 |
# Copyright (c) 2011, 2018, Oracle and/or its affiliates. All rights reserved. |
25859 | 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 |
||
43510
491c481539af
8004842: Unify values of boolean make variables set in configure to true/false
ihse
parents:
35276
diff
changeset
|
30 |
ifeq ($(ENABLE_INTREE_EC), true) |
25859 | 31 |
# On sol-sparc...all libraries are compiled with -xregs=no%appl |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
32 |
# (set in CFLAGS_REQUIRED_sparc) except libsunec.so |
25859 | 33 |
ifeq ($(OPENJDK_TARGET_CPU_ARCH), sparc) |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
34 |
BUILD_LIBSUNEC_CFLAGS_JDKLIB := $(filter-out -xregs=no%appl, $(CFLAGS_JDKLIB)) |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
35 |
BUILD_LIBSUNEC_CXXFLAGS_JDKLIB := $(filter-out -xregs=no%appl, $(CXXFLAGS_JDKLIB)) |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
36 |
else |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
37 |
BUILD_LIBSUNEC_CFLAGS_JDKLIB := $(CFLAGS_JDKLIB) |
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
38 |
BUILD_LIBSUNEC_CXXFLAGS_JDKLIB := $(CXXFLAGS_JDKLIB) |
25859 | 39 |
endif |
40 |
||
49244
995a5556edfa
8199639: Introduce SetupJdkLibrary and SetupJdkExecutable
ihse
parents:
49241
diff
changeset
|
41 |
$(eval $(call SetupJdkLibrary, BUILD_LIBSUNEC, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
48766
diff
changeset
|
42 |
NAME := sunec, \ |
29931
64e274ed6567
8077824: Introduce DefineNativeToolchain to handle toolchain configurations
erikj
parents:
29374
diff
changeset
|
43 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
25859 | 44 |
OPTIMIZATION := LOW, \ |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
45 |
CFLAGS := $(BUILD_LIBSUNEC_CFLAGS_JDKLIB) \ |
25859 | 46 |
-DMP_API_COMPATIBLE -DNSS_ECC_MORE_THAN_SUITE_B, \ |
50471
f0aeede1b855
8204572: SetupJdkLibrary should setup SRC and -I flags automatically
ihse
parents:
49440
diff
changeset
|
47 |
CXXFLAGS := $(BUILD_LIBSUNEC_CXXFLAGS_JDKLIB), \ |
48766
2c4d1993b5f9
8196985: Disable new warnings from GCC 7.3 in jdk libraries
erikj
parents:
47217
diff
changeset
|
48 |
DISABLED_WARNINGS_gcc := sign-compare implicit-fallthrough, \ |
29374
f031a666744a
8074096: Disable (most) native warnings in JDK on a per-library basis
ihse
parents:
27565
diff
changeset
|
49 |
DISABLED_WARNINGS_microsoft := 4101 4244 4146 4018, \ |
25859 | 50 |
LDFLAGS := $(LDFLAGS_JDKLIB) $(LDFLAGS_CXX_JDK), \ |
51 |
LDFLAGS_macosx := $(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
33406 | 52 |
LIBS := $(LIBCXX), \ |
35276 | 53 |
)) |
25859 | 54 |
|
27565 | 55 |
TARGETS += $(BUILD_LIBSUNEC) |
25859 | 56 |
endif |
57 |
||
58 |
################################################################################ |