jdk/make/common/Defs-linux.gmk
author katleman
Thu, 27 Dec 2012 12:15:06 -0800
changeset 14945 25285d2ea668
parent 14424 4fea64e92e7f
permissions -rw-r--r--
Added tag jdk8-b70 for changeset 2981496fa5fa
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
     2
# Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
#
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    23
# questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Makefile to specify compiler flags for programs and libraries
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# targeted to Linux.  Should not contain any rules.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
# WARNING: This file is shared with other workspaces. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#          So when it includes other files, it must use JDK_TOPDIR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
# Warning: the following variables are overriden by Defs.gmk. Set
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
# values will be silently ignored:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#   CFLAGS        (set $(OTHER_CFLAGS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#   CPPFLAGS      (set $(OTHER_CPPFLAGS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#   CXXFLAGS      (set $(OTHER_CXXFLAGS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
#   LDFLAGS       (set $(OTHER_LDFAGS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
#   LDLIBS        (set $(EXTRA_LIBS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
#   LDLIBS_COMMON (set $(EXTRA_LIBS) instead)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
# Get shared JDK settings
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
include $(JDK_MAKE_SHARED_DIR)/Defs.gmk
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
# Part of INCREMENTAL_BUILD mechanism.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
#   Compiler emits things like:  path/file.o: file.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
#   We want something like: relative_path/file.o relative_path/file.d: file.h
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
CC_DEPEND	 = -MM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
CC_DEPEND_FILTER = $(SED) -e 's!$*\.$(OBJECT_SUFFIX)!$(dir $@)& $(dir $@)$*.$(DEPEND_SUFFIX)!g'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
ifndef PLATFORM_SRC
30
7ea1edf98bfe 6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target
ohair
parents: 2
diff changeset
    53
  PLATFORM_SRC = $(BUILDDIR)/../src/solaris
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
endif # PLATFORM_SRC
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
12288
30d13a7dd03f 7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents: 12047
diff changeset
    56
# Location of the various .properties files specific to Linux platform
30d13a7dd03f 7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents: 12047
diff changeset
    57
ifndef PLATFORM_PROPERTIES
30d13a7dd03f 7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents: 12047
diff changeset
    58
  PLATFORM_PROPERTIES  = $(BUILDDIR)/../src/solaris/lib
30d13a7dd03f 7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents: 12047
diff changeset
    59
endif # PLATFORM_SRC
30d13a7dd03f 7153735: [macosx] Text with diacritics is pasted with broken encoding
kizune
parents: 12047
diff changeset
    60
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
# Platform specific closed sources
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  ifndef CLOSED_PLATFORM_SRC
30
7ea1edf98bfe 6668781: Openjdk windows cygwin build failure: no rule to make linker_md.obj target
ohair
parents: 2
diff changeset
    64
    CLOSED_PLATFORM_SRC = $(BUILDDIR)/../src/closed/solaris
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
# platform specific include files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
PLATFORM_INCLUDE_NAME = $(PLATFORM)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
PLATFORM_INCLUDE      = $(INCLUDEDIR)/$(PLATFORM_INCLUDE_NAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
# suffix used for make dependencies files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
DEPEND_SUFFIX = d
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
# The suffix applied to the library name for FDLIBM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
FDDLIBM_SUFFIX = a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
# The suffix applied to scripts (.bat for windows, nothing for unix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
SCRIPT_SUFFIX =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
# CC compiler object code output directive flag value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
12307
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    81
# The Full Debug Symbols (FDS) default for VARIANT == OPT builds is
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    82
# enabled with debug info files ZIP'ed to save space. For VARIANT !=
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    83
# OPT builds, FDS is always enabled, after all a debug build without
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    84
# debug info isn't very useful. The ZIP_DEBUGINFO_FILES option only has
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    85
# meaning when FDS is enabled.
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    86
#
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    87
# If you invoke a build with FULL_DEBUG_SYMBOLS=0, then FDS will be
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    88
# disabled for a VARIANT == OPT build.
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    89
#
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    90
# Note: Use of a different variable name for the FDS override option
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    91
# versus the FDS enabled check is intentional (FULL_DEBUG_SYMBOLS
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    92
# versus ENABLE_FULL_DEBUG_SYMBOLS). For auto build systems that pass
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    93
# in options via environment variables, use of distinct variables
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    94
# prevents strange behaviours. For example, in a VARIANT != OPT build,
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    95
# the FULL_DEBUG_SYMBOLS environment variable will be 0, but the
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    96
# ENABLE_FULL_DEBUG_SYMBOLS make variable will be 1. If the same
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    97
# variable name is used, then different values can be picked up by
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    98
# different parts of the build. Just to be clear, we only need two
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
    99
# variable names because the incoming option value can be overridden
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   100
# in some situations, e.g., a VARIANT != OPT build.
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   101
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   102
ifeq ($(VARIANT), OPT)
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   103
  FULL_DEBUG_SYMBOLS ?= 1
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   104
  ENABLE_FULL_DEBUG_SYMBOLS = $(FULL_DEBUG_SYMBOLS)
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   105
else
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   106
  # debug variants always get Full Debug Symbols (if available)
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   107
  ENABLE_FULL_DEBUG_SYMBOLS = 1
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   108
endif
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   109
_JUNK_ := $(shell \
b34445ac110f 7157296: FDS: ENABLE_FULL_DEBUG_SYMBOLS flag should only affect OPT builds
dcubed
parents: 12293
diff changeset
   110
  echo >&2 "INFO: ENABLE_FULL_DEBUG_SYMBOLS=$(ENABLE_FULL_DEBUG_SYMBOLS)")
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   111
# since objcopy is optional, we set ZIP_DEBUGINFO_FILES later
10603
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   112
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   113
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
14424
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   114
  ifndef CROSS_COMPILE_ARCH
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   115
    # Default OBJCOPY comes from GNU Binutils on Linux:
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   116
    DEF_OBJCOPY=/usr/bin/objcopy
10603
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   117
  else
14424
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   118
    # Assume objcopy is part of the cross-compilation toolkit
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   119
    DEF_OBJCOPY=$(COMPILER_PATH)/objcopy
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   120
  endif
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   121
  OBJCOPY=$(shell test -x $(DEF_OBJCOPY) && echo $(DEF_OBJCOPY))
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   122
  ifneq ($(ALT_OBJCOPY),)
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   123
    _JUNK_ := $(shell echo >&2 "INFO: ALT_OBJCOPY=$(ALT_OBJCOPY)")
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   124
    # disable .debuginfo support by setting ALT_OBJCOPY to a non-existent path
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   125
    OBJCOPY=$(shell test -x $(ALT_OBJCOPY) && echo $(ALT_OBJCOPY))
10603
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   126
  endif
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   127
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   128
  # Setting ENABLE_FULL_DEBUG_SYMBOLS=1 (and OBJCOPY) above enables the
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   129
  # JDK build to import .debuginfo or .diz files from the HotSpot build.
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   130
  # However, adding FDS support to the JDK build will occur in phases
12427
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   131
  # so a different make variable (LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   132
  # and PROGRAM_SUPPORTS_FULL_DEBUG_SYMBOLS) is used to indicate that a
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   133
  # particular library or program supports FDS.
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   134
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   135
  ifeq ($(OBJCOPY),)
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   136
    _JUNK_ := $(shell \
14424
4fea64e92e7f 8002040: Allow Full Debug Symbols when cross-compiling
dholmes
parents: 12445
diff changeset
   137
      echo >&2 "INFO: no objcopy cmd found so cannot create .debuginfo files. You may need to set ALT_OBJCOPY.")
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   138
    ENABLE_FULL_DEBUG_SYMBOLS=0
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   139
  else
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   140
    _JUNK_ := $(shell \
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   141
      echo >&2 "INFO: $(OBJCOPY) cmd found so will create .debuginfo files.")
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   142
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   143
    # Library stripping policies for .debuginfo configs:
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   144
    #   all_strip - strips everything from the library
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   145
    #   min_strip - strips most stuff from the library; leaves minimum symbols
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   146
    #   no_strip  - does not strip the library at all
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   147
    #
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   148
    # Oracle security policy requires "all_strip". A waiver was granted on
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   149
    # 2011.09.01 that permits using "min_strip" in the Java JDK and Java JRE.
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   150
    #
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   151
    # Currently, STRIP_POLICY is only used when Full Debug Symbols is enabled.
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   152
    STRIP_POLICY ?= min_strip
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   153
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   154
    _JUNK_ := $(shell \
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   155
      echo >&2 "INFO: STRIP_POLICY=$(STRIP_POLICY)")
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   156
12445
9df4dd548612 7159320: change default ZIP_DEBUGINFO_FILES back to '1' after fix for 7133529 is available
dcubed
parents: 12427
diff changeset
   157
    ZIP_DEBUGINFO_FILES ?= 1
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   158
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   159
    _JUNK_ := $(shell \
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   160
      echo >&2 "INFO: ZIP_DEBUGINFO_FILES=$(ZIP_DEBUGINFO_FILES)")
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   161
  endif
10603
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   162
endif
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   163
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
# Default optimization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   168
ifndef OPTIMIZATION_LEVEL
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   169
  ifeq ($(PRODUCT), java)
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   170
    OPTIMIZATION_LEVEL = HIGHER
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   171
  else
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   172
    OPTIMIZATION_LEVEL = LOWER
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   173
  endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
endif
2398
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   175
ifndef FASTDEBUG_OPTIMIZATION_LEVEL
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   176
  FASTDEBUG_OPTIMIZATION_LEVEL = LOWER
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   177
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   179
CC_OPT/NONE     = 
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   180
CC_OPT/LOWER    = -O2
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   181
CC_OPT/HIGHER   = -O3
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   182
CC_OPT/HIGHEST  = -O3
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   183
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   184
CC_OPT          = $(CC_OPT/$(OPTIMIZATION_LEVEL))
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   185
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
# For all platforms, do not omit the frame pointer register usage. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
#    We need this frame pointer to make it easy to walk the stacks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
#    This should be the default on X86, but ia64 and amd64 may not have this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
#    as the default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
CFLAGS_REQUIRED_amd64   += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
CFLAGS_REQUIRED_i586    += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
CFLAGS_REQUIRED_ia64    += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
CFLAGS_REQUIRED_sparcv9 += -m64 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
LDFLAGS_COMMON_sparcv9  += -m64 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
CFLAGS_REQUIRED_sparc   += -m32 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
LDFLAGS_COMMON_sparc    += -m32 -mcpu=v9
8796
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   197
CFLAGS_REQUIRED_arm     += -fsigned-char -D_LITTLE_ENDIAN
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   198
CFLAGS_REQUIRED_ppc     += -fsigned-char -D_BIG_ENDIAN
4111
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   199
ifeq ($(ZERO_BUILD), true)
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   200
  CFLAGS_REQUIRED       =  $(ZERO_ARCHFLAG)
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   201
  ifeq ($(ZERO_ENDIANNESS), little)
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   202
    CFLAGS_REQUIRED     += -D_LITTLE_ENDIAN
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   203
  endif
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   204
  LDFLAGS_COMMON        += $(ZERO_ARCHFLAG)
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   205
else
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   206
  CFLAGS_REQUIRED       =  $(CFLAGS_REQUIRED_$(ARCH))
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   207
  LDFLAGS_COMMON        += $(LDFLAGS_COMMON_$(ARCH))
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   208
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
2158
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   210
# If this is a --hash-style=gnu system, use --hash-style=both
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   211
#   The gnu .hash section won't work on some Linux systems like SuSE 10.
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   212
_HAS_HASH_STYLE_GNU:=$(shell $(CC) -dumpspecs | $(GREP) -- '--hash-style=gnu')
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   213
ifneq ($(_HAS_HASH_STYLE_GNU),)
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   214
  LDFLAGS_HASH_STYLE = -Wl,--hash-style=both
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   215
endif
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   216
LDFLAGS_COMMON          += $(LDFLAGS_HASH_STYLE)
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   217
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
# Selection of warning messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
GCC_INHIBIT	= -Wno-unused -Wno-parentheses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
GCC_STYLE	= 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
GCC_WARNINGS	= -W -Wall $(GCC_STYLE) $(GCC_INHIBIT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
# Treat compiler warnings as errors, if warnings not allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
ifeq ($(COMPILER_WARNINGS_FATAL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
  GCC_WARNINGS += -Werror
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
# Misc compiler options
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
#
8796
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   235
ifneq ($(ARCH),ppc)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
  CFLAGS_COMMON   = -fno-strict-aliasing
8796
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   237
endif 
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
PIC_CODE_LARGE = -fPIC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
PIC_CODE_SMALL = -fpic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
GLOBAL_KPIC = $(PIC_CODE_LARGE)
849
be386e469547 6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents: 715
diff changeset
   241
CFLAGS_COMMON   += $(GLOBAL_KPIC) $(GCC_WARNINGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
ifeq ($(ARCH), amd64)
849
be386e469547 6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents: 715
diff changeset
   243
 CFLAGS_COMMON += -pipe
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
# Linux 64bit machines use Dwarf2, which can be HUGE, have fastdebug use -g1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
DEBUG_FLAG = -g
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
ifeq ($(FASTDEBUG), true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
  ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    DEBUG_FLAG = -g1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
2791
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   254
# DEBUG_BINARIES overrides everything, use full -g debug information
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   255
ifeq ($(DEBUG_BINARIES), true)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   256
  DEBUG_FLAG = -g
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   257
  CFLAGS_REQUIRED += $(DEBUG_FLAG)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   258
endif
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   259
12427
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   260
# If Full Debug Symbols is enabled, then we want the same debug and
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   261
# optimization flags as used by FASTDEBUG.
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   262
#
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   263
ifeq ($(ENABLE_FULL_DEBUG_SYMBOLS),1)
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   264
  ifeq ($(LIBRARY_SUPPORTS_FULL_DEBUG_SYMBOLS),1)
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   265
    ifeq ($(VARIANT), OPT)
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   266
      CC_OPT = $(DEBUG_FLAG) $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   267
    endif
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   268
  endif
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   269
endif
116544b5a04c 7071907: JDK: Full Debug Symbols
dcubed
parents: 12309
diff changeset
   270
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   271
CFLAGS_OPT      = $(CC_OPT)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
CFLAGS_DBG      = $(DEBUG_FLAG)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
CFLAGS_COMMON += $(CFLAGS_REQUIRED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
CXXFLAGS_COMMON = $(GLOBAL_KPIC) -DCC_NOEX $(GCC_WARNINGS)
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   276
CXXFLAGS_OPT	= $(CC_OPT)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
CXXFLAGS_DBG	= $(DEBUG_FLAG)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
CXXFLAGS_COMMON += $(CFLAGS_REQUIRED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
# FASTDEBUG: Optimize the code in the -g versions, gives us a faster debug java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
ifeq ($(FASTDEBUG), true)
2398
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   282
  CFLAGS_DBG    += $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   283
  CXXFLAGS_DBG	+= $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
5632
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   286
CPP_ARCH_FLAGS = -DARCH='"$(ARCH)"'
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   287
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   288
# Alpha arch does not like "alpha" defined (potential general arch cleanup issue here)
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   289
ifneq ($(ARCH),alpha)
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   290
  CPP_ARCH_FLAGS += -D$(ARCH)
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   291
else
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   292
  CPP_ARCH_FLAGS += -D_$(ARCH)_
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   293
endif
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   294
5179a4221430 6958257: Add support for alpha
andrew
parents: 5506
diff changeset
   295
CPPFLAGS_COMMON = $(CPP_ARCH_FLAGS) -DLINUX $(VERSION_DEFINES) \
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
		  -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
CPPFLAGS_COMMON += -D_LP64=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
3222
432b8f34c3b0 6858127: Missing -DNDEBUG on Linux and Windows native code compiles
ohair
parents: 2791
diff changeset
   302
CPPFLAGS_OPT    = -DNDEBUG
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
CPPFLAGS_DBG    = -DDEBUG
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   304
ifneq ($(PRODUCT), java)
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   305
  CPPFLAGS_DBG    += -DLOGGING 
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   306
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
ifdef LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
  # Libraries need to locate other libraries at runtime, and you can tell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
  #   a library where to look by way of the dynamic runpaths (RPATH or RUNPATH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
  #   buried inside the .so. The $ORIGIN says to look relative to where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
  #   the library itself is and it can be followed with relative paths from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
  #   that. By default we always look in $ORIGIN, optionally we add relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
  #   paths if the Makefile sets LD_RUNPATH_EXTRAS to those relative paths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
  #   On Linux we add a flag -z origin, not sure if this is necessary, but 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
  #   doesn't seem to hurt.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
  #   The environment variable LD_LIBRARY_PATH will over-ride these runpaths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
  #   Try: 'readelf -d lib*.so' to see these settings in a library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
  #
8796
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   320
  Z_ORIGIN_FLAG/sparc = -Xlinker -z -Xlinker origin
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   321
  Z_ORIGIN_FLAG/i586  = -Xlinker -z -Xlinker origin
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   322
  Z_ORIGIN_FLAG/amd64 = -Xlinker -z -Xlinker origin 
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   323
  Z_ORIGIN_FLAG/ia64  = -Xlinker -z -Xlinker origin
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   324
  Z_ORIGIN_FLAG/arm   = 
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   325
  Z_ORIGIN_FLAG/ppc   =
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   326
  Z_ORIGIN_FLAG/zero  = -Xlinker -z -Xlinker origin
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   327
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   328
  LDFLAG_Z_ORIGIN = $(Z_ORIGIN_FLAG/$(ARCH_FAMILY))
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   329
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   330
  LDFLAGS_COMMON += $(LDFLAG_Z_ORIGIN) -Xlinker -rpath -Xlinker \$$ORIGIN
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   331
  LDFLAGS_COMMON += $(LD_RUNPATH_EXTRAS:%=$(LDFLAG_Z_ORIGIN) -Xlinker -rpath -Xlinker \$$ORIGIN/%)
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   332
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
EXTRA_LIBS += -lc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
4111
ffc9c33335f4 6891677: java/build integrate zero assembler JDK changes
gbenson
parents: 3288
diff changeset
   337
LDFLAGS_DEFS_OPTION  = -Xlinker -z -Xlinker defs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
LDFLAGS_COMMON  += $(LDFLAGS_DEFS_OPTION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
# -L paths for finding and -ljava
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
LDFLAGS_OPT     = -Xlinker -O1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
LDFLAGS_COMMON += -L$(LIBDIR)/$(LIBARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
LDFLAGS_COMMON += -Wl,-soname=$(LIB_PREFIX)$(LIBRARY).$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
# -static-libgcc is a gcc-3 flag to statically link libgcc, gcc-2.9x always
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
# statically link libgcc but will print a warning with the flag. We don't 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
# want the warning, so check gcc version first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
#
9350
799e0bb89242 7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents: 8796
diff changeset
   352
ifeq ($(CC_MAJORVER),3)
799e0bb89242 7038711: Fix CC_VER checks for compiler options, fix use of -Wno-clobber
ohair
parents: 8796
diff changeset
   353
  OTHER_LDFLAGS  += -static-libgcc
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
# Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
#   (See Rules.gmk) The gcc 5 compiler might have an option for this?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
AUTOMATIC_PCH_OPTION = 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
# Post Processing of libraries/executables
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
ifeq ($(VARIANT), OPT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
  ifneq ($(NO_STRIP), true)
2791
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   365
    ifneq ($(DEBUG_BINARIES), true)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   366
      # Debug 'strip -g' leaves local function Elf symbols (better stack
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   367
      # traces)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   368
      POST_STRIP_PROCESS = $(STRIP) -g
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   369
    endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
# Use: ld $(LD_MAPFILE_FLAG) mapfile *.o
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
LD_MAPFILE_FLAG = -Xlinker --version-script -Xlinker
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
# Support for Quantify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
ifdef QUANTIFY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
QUANTIFY_CMD = quantify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
LINK_PRE_CMD = $(QUANTIFY_CMD) $(QUANTIFY_OPTIONS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
# Path and option to link against the VM, if you have to.  Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
# there are libraries that link against only -ljava, but they do get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
# -L to the -ljvm, this is because -ljava depends on -ljvm, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
# the library itself should not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
VM_NAME         = server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
JVMLIB          = -L$(LIBDIR)/$(LIBARCH)/$(VM_NAME) -ljvm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
JAVALIB         = -ljava $(JVMLIB)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
# We want to privatize JVM symbols on Solaris. This is so the user can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
# write a function called FindClass and this should not override the 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
# FindClass that is inside the JVM. At this point in time we are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
# concerned with other JNI libraries because we hope that there will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
# not be as many clashes there.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
PRIVATIZE_JVM_SYMBOLS = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
USE_PTHREADS = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
override ALT_CODESET_KEY         = _NL_CTYPE_CODESET_NAME
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
override AWT_RUNPATH             =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
override HAVE_ALTZONE            = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
override HAVE_FILIOH             = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
override HAVE_GETHRTIME          = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
override HAVE_GETHRVTIME         = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
override HAVE_SIGIGNORE          = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
override LEX_LIBRARY             = -lfl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
ifeq ($(STATIC_CXX),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
override LIBCXX                  = -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
override LIBCXX                  = -lstdc++
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
override LIBPOSIX4               =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
override LIBSOCKET               =
5780
3f7be5f312ae 6960394: Stop linking with -lnsl on Linux
martin
parents: 5506
diff changeset
   422
override LIBNSL                  =
10700
31c24f40f614 7092679: (tz) Java getting wrong timezone/DST info on Solaris 11
okutsu
parents: 10603
diff changeset
   423
override LIBSCF                  =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
override LIBTHREAD               =
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 11369
diff changeset
   425
override LIBDL                   = -ldl
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
override MOOT_PRIORITIES         = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
override NO_INTERRUPTIBLE_IO     = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
ifeq ($(ARCH), amd64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
override OPENWIN_LIB             = $(OPENWIN_HOME)/lib64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
override OPENWIN_LIB             = $(OPENWIN_HOME)/lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
override OTHER_M4FLAGS           = -D__GLIBC__ -DGNU_ASSEMBLER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
override SUN_CMM_SUBDIR          =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
override THREADS_FLAG            = native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
override USE_GNU_M4              = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
override USING_GNU_TAR           = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
override WRITE_LIBVERSION        = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
# USE_EXECNAME forces the launcher to look up argv[0] on $PATH, and put the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
# resulting resolved absolute name of the executable in the environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
# variable EXECNAME.  That executable name is then used that to locate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
# installation area.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
override USE_EXECNAME            = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
# If your platform has DPS, it will have Type1 fonts too, in which case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
# it is best to enable DPS support until such time as 2D's rasteriser
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
# can fully handle Type1 fonts in all cases. Default is "yes".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
# HAVE_DPS should only be "no" if the platform has no DPS headers or libs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
# DPS (Displayable PostScript) is available on Solaris machines
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
HAVE_DPS = no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
# Japanese manpages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
JA_SOURCE_ENCODING = eucJP
9367
7ed49dc79ebc 7036955: Japanese man pages in linux should be in utf-8 encoding
ogino
parents: 8796
diff changeset
   457
JA_TARGET_ENCODINGS = UTF-8
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
# Settings for the JDI - Serviceability Agent binding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
HOTSPOT_SALIB_PATH   = $(HOTSPOT_IMPORT_PATH)/jre/lib/$(LIBARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
SALIB_NAME = $(LIB_PREFIX)saproc.$(LIBRARY_SUFFIX)
10603
c315c8424ce2 7085944: 3/3 FDS: gdb does not find debug symbols for libjsig link
dcubed
parents: 9371
diff changeset
   462
SA_DEBUGINFO_NAME = $(LIB_PREFIX)saproc.debuginfo
12293
6c4b13381b81 7136506: FDS: rework jdk repo Full Debug Symbols support
dcubed
parents: 12047
diff changeset
   463
SA_DIZ_NAME = $(LIB_PREFIX)saproc.diz
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
# The JDI - Serviceability Agent binding is not currently supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
# on Linux-ia64.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
ifeq ($(ARCH), ia64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
  INCLUDE_SA = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
  INCLUDE_SA = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
8796
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   473
ifdef CROSS_COMPILE_ARCH
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   474
  # X11 headers are not under /usr/include
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   475
  OTHER_CFLAGS += -I$(OPENWIN_HOME)/include
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   476
  OTHER_CXXFLAGS += -I$(OPENWIN_HOME)/include
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   477
  OTHER_CPPFLAGS += -I$(OPENWIN_HOME)/include
604a43386301 7027910: Add basic cross-compilation support and add ARM/PPC to the known architectures in the open code
dholmes
parents: 7967
diff changeset
   478
endif