make/hotspot/lib/CompileDtraceLibraries.gmk
author ihse
Tue, 05 Feb 2019 14:57:24 +0100
branchihse-targettest-branch
changeset 57145 ceaa243112bd
parent 51727 49b885c1711a
child 54490 bf07e140c49c
permissions -rw-r--r--
Introduce and start using new isProperty functions.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     1
#
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
     2
# Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     4
#
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    10
#
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    15
# accompanied this code).
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    16
#
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    20
#
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    23
# questions.
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    24
#
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    25
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    26
ifeq ($(call check-jvm-feature, dtrace), true)
57145
ceaa243112bd Introduce and start using new isProperty functions.
ihse
parents: 51727
diff changeset
    27
  ifeq ($(call isTargetOs, solaris), true)
51727
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    28
    JNI_INCLUDE_FLAGS := \
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    29
        -I$(SUPPORT_OUTPUTDIR)/modules_include/java.base \
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    30
        -I$(SUPPORT_OUTPUTDIR)/modules_include/java.base/$(OPENJDK_TARGET_OS_INCLUDE_SUBDIR) \
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    31
        #
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    32
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    33
    ############################################################################
49553
58cffb6ec13c 8201236: Straighten out dtrace build logic
ihse
parents: 49241
diff changeset
    34
    # Build the stand-alone dtrace libraries.
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    35
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    36
    LIBJVM_DTRACE_OUTPUTDIR := $(JVM_VARIANT_OUTPUTDIR)/libjvm_dtrace
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    37
    $(eval $(call SetupNativeCompilation, BUILD_LIBJVM_DTRACE, \
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
    38
        NAME := jvm_dtrace, \
41277
65200988b2ee 8150736: Excessive disk space used by build system
erikj
parents: 39622
diff changeset
    39
        OUTPUT_DIR := $(JVM_LIB_OUTPUTDIR), \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    40
        SRC := $(TOPDIR)/src/java.base/solaris/native/libjvm_dtrace, \
51727
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    41
        CFLAGS := $(JNI_INCLUDE_FLAGS) -m64 -G -mt -KPIC -xldscope=hidden, \
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    42
        LDFLAGS := -m64 -mt -xnolib $(SHARED_LIBRARY_FLAGS), \
49241
de4b3a04feae 8199606: Set -lc as global LIBS on solstudio
ihse
parents: 49157
diff changeset
    43
        LIBS := $(LIBDL) -lthread -ldoor, \
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    44
        OBJECT_DIR := $(LIBJVM_DTRACE_OUTPUTDIR)/objs, \
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    45
    ))
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    46
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    47
    # Note that libjvm_db.c has tests for COMPILER2, but this was never set by
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    48
    # the old build.
49553
58cffb6ec13c 8201236: Straighten out dtrace build logic
ihse
parents: 49241
diff changeset
    49
    LIBJVM_DB_OUTPUTDIR := $(JVM_VARIANT_OUTPUTDIR)/libjvm_db
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    50
    $(eval $(call SetupNativeCompilation, BUILD_LIBJVM_DB, \
49070
d7859531621b 8198751: Refactor SetupNativeCompilation to take NAME and TYPE
ihse
parents: 47217
diff changeset
    51
        NAME := jvm_db, \
41277
65200988b2ee 8150736: Excessive disk space used by build system
erikj
parents: 39622
diff changeset
    52
        OUTPUT_DIR := $(JVM_LIB_OUTPUTDIR), \
47217
72e3ae9a25eb 8187444: Forest Consolidation: Make build work
erikj
parents: 47216
diff changeset
    53
        SRC := $(TOPDIR)/src/java.base/solaris/native/libjvm_db, \
51727
49b885c1711a 8210702: Remove dtrace mapfiles
ihse
parents: 49553
diff changeset
    54
        CFLAGS := -I$(DTRACE_GENSRC_DIR) $(JNI_INCLUDE_FLAGS) -m64 -G -mt -KPIC -xldscope=hidden, \
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    55
        LDFLAGS := -m64 -mt -xnolib $(SHARED_LIBRARY_FLAGS), \
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    56
        OBJECT_DIR := $(LIBJVM_DB_OUTPUTDIR)/objs, \
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    57
    ))
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    58
49553
58cffb6ec13c 8201236: Straighten out dtrace build logic
ihse
parents: 49241
diff changeset
    59
    TARGETS += $(BUILD_LIBJVM_DTRACE) $(BUILD_LIBJVM_DB)
37437
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    60
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    61
  endif
f824aabc7af8 8152666: The new Hotspot Build System
erikj
parents:
diff changeset
    62
endif