author | darcy |
Tue, 12 Nov 2019 10:45:23 -0800 | |
changeset 59037 | 3d2575331a41 |
parent 55049 | 4853b1ceb3d6 |
child 58665 | 30a5049a36bb |
permissions | -rw-r--r-- |
38255 | 1 |
# |
55049 | 2 |
# Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved. |
38255 | 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 |
||
47314 | 26 |
$(eval $(call IncludeCustomExtension, hotspot/lib/CompileGtest.gmk)) |
39393 | 27 |
|
47217 | 28 |
GTEST_TEST_SRC += $(TOPDIR)/test/hotspot/gtest |
29 |
GTEST_LAUNCHER_SRC := $(TOPDIR)/test/hotspot/gtest/gtestLauncher.cpp |
|
30 |
GTEST_FRAMEWORK_SRC := $(TOPDIR)/test/fmw/gtest |
|
38255 | 31 |
|
32 |
# On Windows, there are no internal debug symbols so must set copying to true |
|
33 |
# to get any at all. |
|
53683 | 34 |
ifeq ($(call isTargetOs, windows), true) |
38255 | 35 |
GTEST_COPY_DEBUG_SYMBOLS := true |
36 |
else |
|
37 |
GTEST_COPY_DEBUG_SYMBOLS := false |
|
38 |
endif |
|
39 |
||
40 |
################################################################################ |
|
41 |
||
53683 | 42 |
ifeq ($(call isTargetOs, windows), true) |
38255 | 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 |
||
46630
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42901
diff
changeset
|
55 |
# Disabling undef, switch, format-nonliteral and tautological-undefined-compare |
75aa3e39d02c
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents:
42901
diff
changeset
|
56 |
# warnings for clang because of test source. |
38255 | 57 |
|
58 |
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LIBJVM, \ |
|
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
49024
diff
changeset
|
59 |
NAME := jvm, \ |
41193
9e274c9c3047
8160630: libjimage.so and others should link statically to libgcc
erikj
parents:
39991
diff
changeset
|
60 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
38255 | 61 |
OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \ |
62 |
OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/objs, \ |
|
38636
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
63 |
SRC := $(GTEST_TEST_SRC), \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
64 |
EXCLUDES := $(JVM_EXCLUDES), \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
65 |
EXCLUDE_FILES := gtestLauncher.cpp, \ |
0a04aee4e7a6
8157325: gtest tests are not excluded for minimal builds
ehelin
parents:
38255
diff
changeset
|
66 |
EXCLUDE_PATTERNS := $(JVM_EXCLUDE_PATTERNS), \ |
55049 | 67 |
EXTRA_FILES := \ |
68 |
$(GTEST_FRAMEWORK_SRC)/googletest/src/gtest-all.cc \ |
|
69 |
$(GTEST_FRAMEWORK_SRC)/googlemock/src/gmock-all.cc, \ |
|
38255 | 70 |
EXTRA_OBJECT_FILES := $(filter-out %/operator_new$(OBJ_SUFFIX), \ |
71 |
$(BUILD_LIBJVM_ALL_OBJS)), \ |
|
55049 | 72 |
CFLAGS := $(JVM_CFLAGS) \ |
73 |
-I$(GTEST_FRAMEWORK_SRC)/googletest \ |
|
74 |
-I$(GTEST_FRAMEWORK_SRC)/googletest/include \ |
|
75 |
-I$(GTEST_FRAMEWORK_SRC)/googlemock \ |
|
76 |
-I$(GTEST_FRAMEWORK_SRC)/googlemock/include \ |
|
39393 | 77 |
$(addprefix -I,$(GTEST_TEST_SRC)), \ |
41465 | 78 |
CFLAGS_windows := -EHsc, \ |
38255 | 79 |
CFLAGS_solaris := -DGTEST_HAS_EXCEPTIONS=0 -library=stlport4, \ |
80 |
CFLAGS_macosx := -DGTEST_OS_MAC=1, \ |
|
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
50550
diff
changeset
|
81 |
DISABLED_WARNINGS_gcc := $(DISABLED_WARNINGS_gcc) \ |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
50550
diff
changeset
|
82 |
undef, \ |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
50550
diff
changeset
|
83 |
DISABLED_WARNINGS_clang := $(DISABLED_WARNINGS_clang) \ |
54711
297ddf282627
8223309: test failing due to self-assign-overloaded
erikj
parents:
54490
diff
changeset
|
84 |
undef switch format-nonliteral tautological-undefined-compare \ |
297ddf282627
8223309: test failing due to self-assign-overloaded
erikj
parents:
54490
diff
changeset
|
85 |
self-assign-overloaded, \ |
51839
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
50550
diff
changeset
|
86 |
DISABLED_WARNINGS_solstudio := $(DISABLED_WARNINGS_solstudio) \ |
ab54a4d61d7f
8210988: Improved handling of compiler warnings in the build
ihse
parents:
50550
diff
changeset
|
87 |
identexpected, \ |
38255 | 88 |
LDFLAGS := $(JVM_LDFLAGS), \ |
89 |
LDFLAGS_solaris := -library=stlport4 $(call SET_SHARED_LIBRARY_ORIGIN), \ |
|
90 |
LIBS := $(JVM_LIBS), \ |
|
91 |
OPTIMIZATION := $(JVM_OPTIMIZATION), \ |
|
92 |
MAPFILE := $(GTEST_JVM_MAPFILE), \ |
|
93 |
USE_MAPFILE_FOR_SYMBOLS := true, \ |
|
94 |
COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \ |
|
95 |
ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \ |
|
42885 | 96 |
STRIP_SYMBOLS := false, \ |
39394 | 97 |
PRECOMPILED_HEADER := $(JVM_PRECOMPILED_HEADER), \ |
55049 | 98 |
PRECOMPILED_HEADER_EXCLUDE := gtest-all.cc gmock-all.cc gtestMain.cpp, \ |
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53683
diff
changeset
|
99 |
DEFINE_THIS_FILE := false, \ |
38255 | 100 |
)) |
101 |
||
102 |
TARGETS += $(BUILD_GTEST_LIBJVM) |
|
103 |
||
104 |
################################################################################ |
|
105 |
||
106 |
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LAUNCHER, \ |
|
41193
9e274c9c3047
8160630: libjimage.so and others should link statically to libgcc
erikj
parents:
39991
diff
changeset
|
107 |
TOOLCHAIN := TOOLCHAIN_LINK_CXX, \ |
49070
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
49024
diff
changeset
|
108 |
NAME := gtestLauncher, \ |
d7859531621b
8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents:
49024
diff
changeset
|
109 |
TYPE := EXECUTABLE, \ |
38255 | 110 |
OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \ |
39393 | 111 |
EXTRA_FILES := $(GTEST_LAUNCHER_SRC), \ |
38255 | 112 |
OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/launcher-objs, \ |
55049 | 113 |
CFLAGS := $(JVM_CFLAGS) \ |
114 |
-I$(GTEST_FRAMEWORK_SRC)/googletest \ |
|
115 |
-I$(GTEST_FRAMEWORK_SRC)/googletest/include \ |
|
116 |
-I$(GTEST_FRAMEWORK_SRC)/googlemock \ |
|
117 |
-I$(GTEST_FRAMEWORK_SRC)/googlemock/include, \ |
|
39991
d89a486fa0d2
8161915: Linking gtestLauncher may end up linking with non-gtest libjvm
mgerdin
parents:
39394
diff
changeset
|
118 |
LDFLAGS := $(LDFLAGS_JDKEXE), \ |
38255 | 119 |
LDFLAGS_unix := -L$(JVM_OUTPUTDIR)/gtest $(call SET_SHARED_LIBRARY_ORIGIN), \ |
120 |
LDFLAGS_solaris := -library=stlport4, \ |
|
42542
e8d67bf2f2de
8169255: Link gtestLauncher statically if libjvm is configured for static linking
erikj
parents:
41465
diff
changeset
|
121 |
LIBS_linux := $(LIBCXX), \ |
38255 | 122 |
LIBS_unix := -ljvm, \ |
123 |
LIBS_windows := $(JVM_OUTPUTDIR)/gtest/objs/jvm.lib, \ |
|
124 |
COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \ |
|
125 |
ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \ |
|
54490
bf07e140c49c
8221851: Use of THIS_FILE in hotspot invalidates precompiled header on Linux/GCC
erikj
parents:
53683
diff
changeset
|
126 |
DEFINE_THIS_FILE := false, \ |
38255 | 127 |
)) |
128 |
||
129 |
$(BUILD_GTEST_LAUNCHER): $(BUILD_GTEST_LIBJVM) |
|
130 |
||
131 |
TARGETS += $(BUILD_GTEST_LAUNCHER) |
|
132 |
||
133 |
################################################################################ |