author | lana |
Thu, 23 Feb 2017 17:22:06 +0000 | |
changeset 43906 | 967cf1d9c601 |
parent 42901 | 3da41dfcadf8 |
child 46630 | 75aa3e39d02c |
permissions | -rw-r--r-- |
38255 | 1 |
# |
2 |
# Copyright (c) 2016, 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 |
||
39393 | 26 |
$(eval $(call IncludeCustomExtension, hotspot, lib/CompileGtest.gmk)) |
27 |
||
28 |
GTEST_TEST_SRC += $(HOTSPOT_TOPDIR)/test/native |
|
29 |
GTEST_LAUNCHER_SRC := $(HOTSPOT_TOPDIR)/test/native/gtestLauncher.cpp |
|
38255 | 30 |
GTEST_FRAMEWORK_SRC := $(SRC_ROOT)/test/fmw/gtest |
31 |
||
32 |
# On Windows, there are no internal debug symbols so must set copying to true |
|
33 |
# to get any at all. |
|
34 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
35 |
GTEST_COPY_DEBUG_SYMBOLS := true |
|
36 |
else |
|
37 |
GTEST_COPY_DEBUG_SYMBOLS := false |
|
38 |
endif |
|
39 |
||
40 |
################################################################################ |
|
41 |
||
42 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
43 |
GTEST_JVM_MAPFILE := $(JVM_MAPFILE) |
|
44 |
else |
|
45 |
GTEST_JVM_MAPFILE := $(JVM_OUTPUTDIR)/gtest/mapfile |
|
46 |
||
47 |
$(JVM_OUTPUTDIR)/gtest/symbols: $(JVM_OUTPUTDIR)/symbols |
|
48 |
$(call MakeDir, $(@D)) |
|
49 |
( $(CAT) $< ; echo "runUnitTests" ) > $@ |
|
50 |
||
51 |
$(GTEST_JVM_MAPFILE): $(JVM_OUTPUTDIR)/gtest/symbols |
|
52 |
$(call create-mapfile) |
|
53 |
endif |
|
54 |
||
55 |
# Disabling switch warning for clang because of test source. |
|
56 |
||
42901
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
57 |
# Note: On AIX, the gtest test classes linked into the libjvm.so push the TOC |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
58 |
# size beyond 64k, so we need to link with bigtoc. However, this means that |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
59 |
# -qpic=large would be advisable to lessen the performance effect of bigtoc. |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
60 |
# But we want to avoid imposing -qpic=large onto the regular libjvm.so, which |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
61 |
# has no problem with its TOC, so do this only for object files which are |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
62 |
# exclusive to the gtest libjvm.so. |
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
63 |
|
38255 | 64 |
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LIBJVM, \ |
41193
9e274c9c3047
8160630: libjimage.so and others should link statically to libgcc
erikj
parents:
39991
diff
changeset
|
65 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
38255 | 66 |
LIBRARY := jvm, \ |
67 |
OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \ |
|
68 |
OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/objs, \ |
|
38636
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
69 |
SRC := $(GTEST_TEST_SRC), \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
70 |
EXCLUDES := $(JVM_EXCLUDES), \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
71 |
EXCLUDE_FILES := gtestLauncher.cpp, \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
72 |
EXCLUDE_PATTERNS := $(JVM_EXCLUDE_PATTERNS), \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
73 |
EXTRA_FILES := $(GTEST_FRAMEWORK_SRC)/src/gtest-all.cc, \ |
38255 | 74 |
EXTRA_OBJECT_FILES := $(filter-out %/operator_new$(OBJ_SUFFIX), \ |
75 |
$(BUILD_LIBJVM_ALL_OBJS)), \ |
|
76 |
CFLAGS := $(JVM_CFLAGS) -I$(GTEST_FRAMEWORK_SRC) \ |
|
77 |
-I$(GTEST_FRAMEWORK_SRC)/include \ |
|
39393 | 78 |
$(addprefix -I,$(GTEST_TEST_SRC)), \ |
41465 | 79 |
CFLAGS_windows := -EHsc, \ |
38255 | 80 |
CFLAGS_solaris := -DGTEST_HAS_EXCEPTIONS=0 -library=stlport4, \ |
81 |
CFLAGS_macosx := -DGTEST_OS_MAC=1, \ |
|
42901
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
82 |
CFLAGS_aix := -qpic=large, \ |
38255 | 83 |
CFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \ |
84 |
CXXFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \ |
|
85 |
DISABLED_WARNINGS_gcc := undef, \ |
|
86 |
DISABLED_WARNINGS_clang := undef switch format-nonliteral \ |
|
39394 | 87 |
tautological-undefined-compare $(BUILD_LIBJVM_DISABLED_WARNINGS_clang), \ |
38255 | 88 |
DISABLED_WARNINGS_solstudio := identexpected, \ |
89 |
LDFLAGS := $(JVM_LDFLAGS), \ |
|
90 |
LDFLAGS_solaris := -library=stlport4 $(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
42901
3da41dfcadf8
8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents:
42885
diff
changeset
|
91 |
LDFLAGS_aix := -bbigtoc, \ |
38255 | 92 |
LIBS := $(JVM_LIBS), \ |
93 |
OPTIMIZATION := $(JVM_OPTIMIZATION), \ |
|
94 |
MAPFILE := $(GTEST_JVM_MAPFILE), \ |
|
95 |
USE_MAPFILE_FOR_SYMBOLS := true, \ |
|
96 |
COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \ |
|
97 |
ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \ |
|
42885 | 98 |
STRIP_SYMBOLS := false, \ |
39394 | 99 |
PRECOMPILED_HEADER := $(JVM_PRECOMPILED_HEADER), \ |
100 |
PRECOMPILED_HEADER_EXCLUDE := gtest-all.cc gtestMain.cpp, \ |
|
38255 | 101 |
)) |
102 |
||
103 |
TARGETS += $(BUILD_GTEST_LIBJVM) |
|
104 |
||
105 |
################################################################################ |
|
106 |
||
107 |
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LAUNCHER, \ |
|
41193
9e274c9c3047
8160630: libjimage.so and others should link statically to libgcc
erikj
parents:
39991
diff
changeset
|
108 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
38255 | 109 |
PROGRAM := gtestLauncher, \ |
110 |
OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \ |
|
39393 | 111 |
EXTRA_FILES := $(GTEST_LAUNCHER_SRC), \ |
38255 | 112 |
OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/launcher-objs, \ |
113 |
CFLAGS := $(JVM_CFLAGS) -I$(GTEST_FRAMEWORK_SRC) \ |
|
114 |
-I$(GTEST_FRAMEWORK_SRC)/include, \ |
|
115 |
CFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \ |
|
116 |
CXXFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \ |
|
39991
d89a486fa0d2
8161915: Linking gtestLauncher may end up linking with non-gtest libjvm
mgerdin
parents:
39394
diff
changeset
|
117 |
LDFLAGS := $(LDFLAGS_JDKEXE), \ |
38255 | 118 |
LDFLAGS_unix := -L$(JVM_OUTPUTDIR)/gtest $(call SET_SHARED_LIBRARY_ORIGIN), \ |
119 |
LDFLAGS_solaris := -library=stlport4, \ |
|
42542
e8d67bf2f2de
8169255: Link gtestLauncher statically if libjvm is configured for static linking
erikj
parents:
41465
diff
changeset
|
120 |
LIBS_linux := $(LIBCXX), \ |
38255 | 121 |
LIBS_unix := -ljvm, \ |
122 |
LIBS_windows := $(JVM_OUTPUTDIR)/gtest/objs/jvm.lib, \ |
|
123 |
COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \ |
|
124 |
ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \ |
|
125 |
)) |
|
126 |
||
127 |
$(BUILD_GTEST_LAUNCHER): $(BUILD_GTEST_LIBJVM) |
|
128 |
||
129 |
TARGETS += $(BUILD_GTEST_LAUNCHER) |
|
130 |
||
131 |
################################################################################ |