jdk/make/lib/LibCommon.gmk
author amurillo
Mon, 18 Jan 2016 20:22:13 -0800
changeset 35273 b2435eb4bbec
parent 35266 e18371fa3e76
parent 35241 075bbb8f2423
child 35276 50b3cdcef339
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     1
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     2
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     4
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    10
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    15
# accompanied this code).
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    16
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    20
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    23
# questions.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    24
#
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    25
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    26
include NativeCompilation.gmk
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    27
35262
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    28
# Hook to include the corresponding custom file, if present.
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    29
$(eval $(call IncludeCustomExtension, jdk, lib/LibCommon.gmk))
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    30
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    31
################################################################################
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    32
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    33
GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    34
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    35
# Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    36
# elegant solution to this.
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    37
WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    38
27772
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    39
ifdef OPENJDK
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    40
  # Build everything with debugging on OpenJDK
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    41
  DEBUG_ALL_BINARIES := true
27772
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    42
else
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    43
  # Use this variable to set DEBUG_SYMBOLS true on windows for all libraries, but
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    44
  # not on other platforms.
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    45
  ifeq ($(OPENJDK_TARGET_OS), windows)
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    46
    DEBUG_ALL_BINARIES := true
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    47
  else
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    48
    DEBUG_ALL_BINARIES := false
a0a13701758d 8065913: Various improvements in SetupNativeCompilation
ihse
parents: 27736
diff changeset
    49
  endif
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    50
endif
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    51
34695
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    52
# SetupNativeCompilation now supports debug symbols on macosx for hotspot.
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    53
# Disable it here for the jdk libraries until we decide to enable them.
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    54
ifeq ($(OPENJDK_TARGET_OS), macosx)
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    55
  ENABLE_DEBUG_SYMBOLS := false
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    56
endif
7a6cc9982d22 8142907: Integration of minor fixes from the build-infra project
ihse
parents: 32515
diff changeset
    57
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    58
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    59
# Find the default set of src dirs for a native library.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    60
# Param 1 - module name
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    61
# Param 2 - library name
35262
6ffcba13c973 8138677: IllegalAccessException Class sun.usagetracker.UsageTrackerClient$4 (module java.base) can not access a member of class java.lang.management.ManagementFactory (module java.management)
jbachorik
parents: 32515
diff changeset
    62
FindSrcDirsForLib += \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    63
  $(call uniq, $(wildcard \
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    64
      $(JDK_TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS)/native/lib$(strip $2) \
27799
chegar
parents: 27565 27772
diff changeset
    65
      $(JDK_TOPDIR)/src/$(strip $1)/$(OPENJDK_TARGET_OS_TYPE)/native/lib$(strip $2) \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    66
      $(JDK_TOPDIR)/src/$(strip $1)/share/native/lib$(strip $2)))
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    67
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    68
################################################################################
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    69
# Find a library
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    70
# Param 1 - module name
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    71
# Param 2 - library name
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    72
# Param 3 - subdir for library
28307
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    73
FindLib = \
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    74
    $(call FindLibDirForModule, \
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    75
        $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX)
ddfb652c7496 8067060: build can still fail with spaces following -L on link lines
erikj
parents: 27944
diff changeset
    76
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    77
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    78
################################################################################
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    79
# Define the header include flags needed to compile against it.
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    80
LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java))
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    81
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    82
# Put the libraries here.
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    83
INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE))
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 26192
diff changeset
    84
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    85
################################################################################
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    86
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    87
# Define it here since there are multiple uses.
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    88
ifeq ($(USE_EXTERNAL_LIBZ), true)
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    89
  LIBZ := -lz
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    90
else
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    91
  ZLIB_CPPFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/libzip/zlib-1.2.8
3317bb8137f4 8054834: Modular Source Code
chegar
parents:
diff changeset
    92
endif
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 34695
diff changeset
    93
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 34695
diff changeset
    94
###############################################################################