make/hotspot/lib/CompileGtest.gmk
author ihse
Thu, 05 Oct 2017 12:41:06 +0200
changeset 47314 743814386712
parent 47217 72e3ae9a25eb
child 49024 953b3fd36b08
child 56197 8fcca3163b7f
permissions -rw-r--r--
8188814: Simplify IncludeCustomExtension Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     1
#
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 42901
diff changeset
     2
# Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     4
#
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    10
#
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    15
# accompanied this code).
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    16
#
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    20
#
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    23
# questions.
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    24
#
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    25
47314
743814386712 8188814: Simplify IncludeCustomExtension
ihse
parents: 47217
diff changeset
    26
$(eval $(call IncludeCustomExtension, hotspot/lib/CompileGtest.gmk))
39393
93730d02bec3 8159340: Add extension to CompileGtest.gmk
ehelin
parents: 38636
diff changeset
    27
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    28
GTEST_TEST_SRC += $(TOPDIR)/test/hotspot/gtest
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    29
GTEST_LAUNCHER_SRC := $(TOPDIR)/test/hotspot/gtest/gtestLauncher.cpp
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    30
GTEST_FRAMEWORK_SRC := $(TOPDIR)/test/fmw/gtest
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    31
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    32
# On Windows, there are no internal debug symbols so must set copying to true
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    33
# to get any at all.
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    34
ifeq ($(OPENJDK_TARGET_OS), windows)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    35
  GTEST_COPY_DEBUG_SYMBOLS := true
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    36
else
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    37
  GTEST_COPY_DEBUG_SYMBOLS := false
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    38
endif
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    39
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    40
################################################################################
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    41
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    42
ifeq ($(OPENJDK_TARGET_OS), windows)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    43
  GTEST_JVM_MAPFILE := $(JVM_MAPFILE)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    44
else
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    45
  GTEST_JVM_MAPFILE := $(JVM_OUTPUTDIR)/gtest/mapfile
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    46
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    47
  $(JVM_OUTPUTDIR)/gtest/symbols: $(JVM_OUTPUTDIR)/symbols
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    48
	$(call MakeDir, $(@D))
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    49
	( $(CAT) $< ; echo "runUnitTests" ) > $@
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    50
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    51
  $(GTEST_JVM_MAPFILE): $(JVM_OUTPUTDIR)/gtest/symbols
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    52
	$(call create-mapfile)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    53
endif
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    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
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    57
42901
3da41dfcadf8 8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents: 42885
diff changeset
    58
# 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
    59
# 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
    60
# -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
    61
# 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
    62
# 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
    63
# exclusive to the gtest libjvm.so.
3da41dfcadf8 8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents: 42885
diff changeset
    64
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    65
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LIBJVM, \
41193
9e274c9c3047 8160630: libjimage.so and others should link statically to libgcc
erikj
parents: 39991
diff changeset
    66
    TOOLCHAIN := TOOLCHAIN_LINK_CXX, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    67
    LIBRARY := jvm, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    68
    OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    69
    OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/objs, \
38636
0a04aee4e7a6 8157325: gtest tests are not excluded for minimal builds
ehelin
parents: 38255
diff changeset
    70
    SRC := $(GTEST_TEST_SRC), \
0a04aee4e7a6 8157325: gtest tests are not excluded for minimal builds
ehelin
parents: 38255
diff changeset
    71
    EXCLUDES := $(JVM_EXCLUDES), \
0a04aee4e7a6 8157325: gtest tests are not excluded for minimal builds
ehelin
parents: 38255
diff changeset
    72
    EXCLUDE_FILES := gtestLauncher.cpp, \
0a04aee4e7a6 8157325: gtest tests are not excluded for minimal builds
ehelin
parents: 38255
diff changeset
    73
    EXCLUDE_PATTERNS := $(JVM_EXCLUDE_PATTERNS), \
0a04aee4e7a6 8157325: gtest tests are not excluded for minimal builds
ehelin
parents: 38255
diff changeset
    74
    EXTRA_FILES := $(GTEST_FRAMEWORK_SRC)/src/gtest-all.cc, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    75
    EXTRA_OBJECT_FILES := $(filter-out %/operator_new$(OBJ_SUFFIX), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    76
        $(BUILD_LIBJVM_ALL_OBJS)), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    77
    CFLAGS := $(JVM_CFLAGS) -I$(GTEST_FRAMEWORK_SRC) \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    78
        -I$(GTEST_FRAMEWORK_SRC)/include \
39393
93730d02bec3 8159340: Add extension to CompileGtest.gmk
ehelin
parents: 38636
diff changeset
    79
        $(addprefix -I,$(GTEST_TEST_SRC)), \
41465
2b9154b407e6 8167424: Various trivial fixes in build system
ihse
parents: 41193
diff changeset
    80
    CFLAGS_windows := -EHsc, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    81
    CFLAGS_solaris := -DGTEST_HAS_EXCEPTIONS=0 -library=stlport4, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    82
    CFLAGS_macosx := -DGTEST_OS_MAC=1, \
42901
3da41dfcadf8 8171408: [aix] TOC overflow when linking the gtest libjvm.so
stuefe
parents: 42885
diff changeset
    83
    CFLAGS_aix := -qpic=large, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    84
    CFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    85
    CXXFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    86
    DISABLED_WARNINGS_gcc := undef, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    87
    DISABLED_WARNINGS_clang := undef switch format-nonliteral \
39394
044a0eb96215 8159364: Gtest unit tests does not support PCH
ehelin
parents: 39393
diff changeset
    88
        tautological-undefined-compare $(BUILD_LIBJVM_DISABLED_WARNINGS_clang), \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    89
    DISABLED_WARNINGS_solstudio := identexpected, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    90
    LDFLAGS := $(JVM_LDFLAGS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    91
    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
    92
    LDFLAGS_aix := -bbigtoc, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    93
    LIBS := $(JVM_LIBS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    94
    OPTIMIZATION := $(JVM_OPTIMIZATION), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    95
    MAPFILE := $(GTEST_JVM_MAPFILE), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    96
    USE_MAPFILE_FOR_SYMBOLS := true, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    97
    COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
    98
    ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \
42885
d85e387adbb6 8171310: Gtest libjvm.so is always stripped
erikj
parents: 42542
diff changeset
    99
    STRIP_SYMBOLS := false, \
39394
044a0eb96215 8159364: Gtest unit tests does not support PCH
ehelin
parents: 39393
diff changeset
   100
    PRECOMPILED_HEADER := $(JVM_PRECOMPILED_HEADER), \
044a0eb96215 8159364: Gtest unit tests does not support PCH
ehelin
parents: 39393
diff changeset
   101
    PRECOMPILED_HEADER_EXCLUDE := gtest-all.cc gtestMain.cpp, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   102
))
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   103
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   104
TARGETS += $(BUILD_GTEST_LIBJVM)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   105
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   106
################################################################################
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   107
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   108
$(eval $(call SetupNativeCompilation, BUILD_GTEST_LAUNCHER, \
41193
9e274c9c3047 8160630: libjimage.so and others should link statically to libgcc
erikj
parents: 39991
diff changeset
   109
    TOOLCHAIN := TOOLCHAIN_LINK_CXX, \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   110
    PROGRAM := gtestLauncher, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   111
    OUTPUT_DIR := $(JVM_OUTPUTDIR)/gtest, \
39393
93730d02bec3 8159340: Add extension to CompileGtest.gmk
ehelin
parents: 38636
diff changeset
   112
    EXTRA_FILES := $(GTEST_LAUNCHER_SRC), \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   113
    OBJECT_DIR := $(JVM_OUTPUTDIR)/gtest/launcher-objs, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   114
    CFLAGS := $(JVM_CFLAGS) -I$(GTEST_FRAMEWORK_SRC) \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   115
        -I$(GTEST_FRAMEWORK_SRC)/include, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   116
    CFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   117
    CXXFLAGS_DEBUG_SYMBOLS := $(JVM_CFLAGS_SYMBOLS), \
39991
d89a486fa0d2 8161915: Linking gtestLauncher may end up linking with non-gtest libjvm
mgerdin
parents: 39394
diff changeset
   118
    LDFLAGS := $(LDFLAGS_JDKEXE), \
38255
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   119
    LDFLAGS_unix := -L$(JVM_OUTPUTDIR)/gtest $(call SET_SHARED_LIBRARY_ORIGIN), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   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
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   122
    LIBS_unix := -ljvm, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   123
    LIBS_windows := $(JVM_OUTPUTDIR)/gtest/objs/jvm.lib, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   124
    COPY_DEBUG_SYMBOLS := $(GTEST_COPY_DEBUG_SYMBOLS), \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   125
    ZIP_EXTERNAL_DEBUG_SYMBOLS := false, \
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   126
))
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   127
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   128
$(BUILD_GTEST_LAUNCHER): $(BUILD_GTEST_LIBJVM)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   129
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   130
TARGETS += $(BUILD_GTEST_LAUNCHER)
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   131
5784bccf53b0 8148244: Finalize and integrate GTest implementation
iignatyev
parents:
diff changeset
   132
################################################################################