jdk/make/common/Defs-linux.gmk
author aph
Fri, 17 Apr 2009 15:56:20 +0100
changeset 2791 c84bf0caab7f
parent 2398 b0e6622ee72e
child 3222 432b8f34c3b0
permissions -rw-r--r--
6829575: 100028: Debug information is incomplete or missing Summary: Enable debugging in many places Reviewed-by: ohair Contributed-by: Andrew Haley <aph@redhat.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
#
715
f16baef3a20e 6719955: Update copyright year
xdono
parents: 30
diff changeset
     2
# Copyright 1999-2008 Sun Microsystems, Inc.  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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
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
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# have any questions.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
# Platform specific closed sources
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
ifndef OPENJDK
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  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
    59
    CLOSED_PLATFORM_SRC = $(BUILDDIR)/../src/closed/solaris
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
# platform specific include files
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
PLATFORM_INCLUDE_NAME = $(PLATFORM)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
PLATFORM_INCLUDE      = $(INCLUDEDIR)/$(PLATFORM_INCLUDE_NAME)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
# suffix used for make dependencies files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
DEPEND_SUFFIX = d
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
# The suffix applied to the library name for FDLIBM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
FDDLIBM_SUFFIX = a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
# The suffix applied to scripts (.bat for windows, nothing for unix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
SCRIPT_SUFFIX =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
# CC compiler object code output directive flag value
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
CC_OBJECT_OUTPUT_FLAG = -o #trailing blank required!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
CC_PROGRAM_OUTPUT_FLAG = -o #trailing blank required!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
# Default HPI libraries. Build will build only native, unless
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
# overriden at the make command line. This makes it convenient for
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
# people doing, say, a pthreads port -- they can create a posix
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
# directory here, and say "gnumake HPIS=posix" at the top
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
# level.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
HPIS = native
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
# Default optimization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
    90
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
    91
  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
    92
    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
    93
  else
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
    94
    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
    95
  endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
endif
2398
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
    97
ifndef FASTDEBUG_OPTIMIZATION_LEVEL
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
    98
  FASTDEBUG_OPTIMIZATION_LEVEL = LOWER
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
    99
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   101
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
   102
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
   103
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
   104
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
   105
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   106
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
   107
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
# For all platforms, do not omit the frame pointer register usage. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
#    We need this frame pointer to make it easy to walk the stacks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
#    This should be the default on X86, but ia64 and amd64 may not have this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
#    as the default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
CFLAGS_REQUIRED_amd64   += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
CFLAGS_REQUIRED_i586    += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
CFLAGS_REQUIRED_ia64    += -fno-omit-frame-pointer -D_LITTLE_ENDIAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
CFLAGS_REQUIRED_sparcv9 += -m64 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
LDFLAGS_COMMON_sparcv9  += -m64 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
CFLAGS_REQUIRED_sparc   += -m32 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
LDFLAGS_COMMON_sparc    += -m32 -mcpu=v9
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
CFLAGS_REQUIRED         =  $(CFLAGS_REQUIRED_$(ARCH))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
LDFLAGS_COMMON          += $(LDFLAGS_COMMON_$(ARCH))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
2158
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   122
# 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
   123
#   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
   124
_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
   125
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
   126
  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
   127
endif
68869a085470 6799141: Build with --hash-style=both so that binaries can work on SuSE 10
ohair
parents: 919
diff changeset
   128
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
   129
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
# Selection of warning messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
GCC_INHIBIT	= -Wno-unused -Wno-parentheses
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
GCC_STYLE	= 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
GCC_WARNINGS	= -W -Wall $(GCC_STYLE) $(GCC_INHIBIT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
# Treat compiler warnings as errors, if warnings not allowed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
ifeq ($(COMPILER_WARNINGS_FATAL),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
  GCC_WARNINGS += -Werror
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
# Misc compiler options
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
ifeq ($(ARCH),ppc)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
  CFLAGS_COMMON   = -fsigned-char
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
else # ARCH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
  CFLAGS_COMMON   = -fno-strict-aliasing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
endif # ARCH
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
PIC_CODE_LARGE = -fPIC
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
PIC_CODE_SMALL = -fpic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
GLOBAL_KPIC = $(PIC_CODE_LARGE)
849
be386e469547 6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents: 715
diff changeset
   155
CFLAGS_COMMON   += $(GLOBAL_KPIC) $(GCC_WARNINGS)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
ifeq ($(ARCH), amd64)
849
be386e469547 6727683: Cleanup use of COMPILER_WARNINGS_FATAL in makefiles
ohair
parents: 715
diff changeset
   157
 CFLAGS_COMMON += -pipe
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
# Linux 64bit machines use Dwarf2, which can be HUGE, have fastdebug use -g1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
DEBUG_FLAG = -g
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
ifeq ($(FASTDEBUG), true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
  ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    DEBUG_FLAG = -g1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
2791
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   168
# DEBUG_BINARIES overrides everything, use full -g debug information
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   169
ifeq ($(DEBUG_BINARIES), true)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   170
  DEBUG_FLAG = -g
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   171
  CFLAGS_REQUIRED += $(DEBUG_FLAG)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   172
endif
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   173
917
75261da60fff 6729772: 64-bit build with SS12 compiler: SIGSEGV (0xb) at pc=0x0000000000000048, pid=14826, tid=2
ohair
parents: 715
diff changeset
   174
CFLAGS_OPT      = $(CC_OPT)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
CFLAGS_DBG      = $(DEBUG_FLAG)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
CFLAGS_COMMON += $(CFLAGS_REQUIRED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
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
   179
CXXFLAGS_OPT	= $(CC_OPT)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
CXXFLAGS_DBG	= $(DEBUG_FLAG)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
CXXFLAGS_COMMON += $(CFLAGS_REQUIRED)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
# FASTDEBUG: Optimize the code in the -g versions, gives us a faster debug java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
ifeq ($(FASTDEBUG), true)
2398
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   185
  CFLAGS_DBG    += $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
b0e6622ee72e 6604458: linux_x64-fastdebug-c2 fails on hyperbolic trig tests
ohair
parents: 2158
diff changeset
   186
  CXXFLAGS_DBG	+= $(CC_OPT/$(FASTDEBUG_OPTIMIZATION_LEVEL))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
CPPFLAGS_COMMON = -D$(ARCH) -DARCH='"$(ARCH)"' -DLINUX $(VERSION_DEFINES) \
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
		  -D_LARGEFILE64_SOURCE -D_GNU_SOURCE -D_REENTRANT
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
ifeq ($(ARCH_DATA_MODEL), 64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
CPPFLAGS_COMMON += -D_LP64=1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
CPPFLAGS_OPT    = 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
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
   198
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
   199
  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
   200
endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
ifdef LIBRARY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
  # Libraries need to locate other libraries at runtime, and you can tell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
  #   a library where to look by way of the dynamic runpaths (RPATH or RUNPATH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
  #   buried inside the .so. The $ORIGIN says to look relative to where
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
  #   the library itself is and it can be followed with relative paths from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
  #   that. By default we always look in $ORIGIN, optionally we add relative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
  #   paths if the Makefile sets LD_RUNPATH_EXTRAS to those relative paths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
  #   On Linux we add a flag -z origin, not sure if this is necessary, but 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
  #   doesn't seem to hurt.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
  #   The environment variable LD_LIBRARY_PATH will over-ride these runpaths.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
  #   Try: 'readelf -d lib*.so' to see these settings in a library.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
  #
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
  LDFLAGS_COMMON += -Xlinker -z -Xlinker origin -Xlinker -rpath -Xlinker \$$ORIGIN
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
  LDFLAGS_COMMON += $(LD_RUNPATH_EXTRAS:%=-Xlinker -z -Xlinker origin -Xlinker -rpath -Xlinker \$$ORIGIN/%)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
EXTRA_LIBS += -lc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
LDFLAGS_DEFS_OPTION  = -z defs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
LDFLAGS_COMMON  += $(LDFLAGS_DEFS_OPTION)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
# -L paths for finding and -ljava
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
LDFLAGS_OPT     = -Xlinker -O1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
LDFLAGS_COMMON += -L$(LIBDIR)/$(LIBARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
LDFLAGS_COMMON += -Wl,-soname=$(LIB_PREFIX)$(LIBRARY).$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
# -static-libgcc is a gcc-3 flag to statically link libgcc, gcc-2.9x always
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
# statically link libgcc but will print a warning with the flag. We don't 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
# want the warning, so check gcc version first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
CC_VER_MAJOR := $(shell $(CC) -dumpversion | $(SED) 's/egcs-//' | $(CUT) -d'.' -f1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
ifeq ("$(CC_VER_MAJOR)", "3")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
OTHER_LDFLAGS  += -static-libgcc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
# Automatic precompiled header option to use (if COMPILE_APPROACH=batch)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
#   (See Rules.gmk) The gcc 5 compiler might have an option for this?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
AUTOMATIC_PCH_OPTION = 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
# Post Processing of libraries/executables
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
ifeq ($(VARIANT), OPT)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
  ifneq ($(NO_STRIP), true)
2791
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   249
    ifneq ($(DEBUG_BINARIES), true)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   250
      # Debug 'strip -g' leaves local function Elf symbols (better stack
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   251
      # traces)
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   252
      POST_STRIP_PROCESS = $(STRIP) -g
c84bf0caab7f 6829575: 100028: Debug information is incomplete or missing
aph
parents: 2398
diff changeset
   253
    endif
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
  endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
# Use: ld $(LD_MAPFILE_FLAG) mapfile *.o
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
LD_MAPFILE_FLAG = -Xlinker --version-script -Xlinker
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
# Support for Quantify.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
ifdef QUANTIFY
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
QUANTIFY_CMD = quantify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
QUANTIFY_OPTIONS = -cache-dir=/tmp/quantify -always-use-cache-dir=yes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
LINK_PRE_CMD = $(QUANTIFY_CMD) $(QUANTIFY_OPTIONS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
# Path and option to link against the VM, if you have to.  Note that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
# there are libraries that link against only -ljava, but they do get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
# -L to the -ljvm, this is because -ljava depends on -ljvm, whereas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
# the library itself should not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
VM_NAME         = server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
JVMLIB          = -L$(LIBDIR)/$(LIBARCH)/$(VM_NAME) -ljvm
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
JAVALIB         = -ljava $(JVMLIB)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
# We want to privatize JVM symbols on Solaris. This is so the user can
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
# write a function called FindClass and this should not override the 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
# FindClass that is inside the JVM. At this point in time we are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
# concerned with other JNI libraries because we hope that there will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
# not be as many clashes there.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
PRIVATIZE_JVM_SYMBOLS = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
USE_PTHREADS = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
override ALT_CODESET_KEY         = _NL_CTYPE_CODESET_NAME
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
override AWT_RUNPATH             =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
override HAVE_ALTZONE            = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
override HAVE_FILIOH             = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
override HAVE_GETHRTIME          = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
override HAVE_GETHRVTIME         = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
override HAVE_SIGIGNORE          = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
override LEX_LIBRARY             = -lfl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
ifeq ($(STATIC_CXX),true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
override LIBCXX                  = -Wl,-Bstatic -lstdc++ -lgcc -Wl,-Bdynamic
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
override LIBCXX                  = -lstdc++
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
override LIBPOSIX4               =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
override LIBSOCKET               =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
override LIBTHREAD               =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
override MOOT_PRIORITIES         = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
override NO_INTERRUPTIBLE_IO     = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
override OPENWIN_HOME            = /usr/X11R6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
ifeq ($(ARCH), amd64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
override OPENWIN_LIB             = $(OPENWIN_HOME)/lib64
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
override OPENWIN_LIB             = $(OPENWIN_HOME)/lib
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
override OTHER_M4FLAGS           = -D__GLIBC__ -DGNU_ASSEMBLER
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
override SUN_CMM_SUBDIR          =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
override THREADS_FLAG            = native
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
override USE_GNU_M4              = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
override USING_GNU_TAR           = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
override WRITE_LIBVERSION        = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
# USE_EXECNAME forces the launcher to look up argv[0] on $PATH, and put the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
# resulting resolved absolute name of the executable in the environment
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
# variable EXECNAME.  That executable name is then used that to locate the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
# installation area.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
override USE_EXECNAME            = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
# If your platform has DPS, it will have Type1 fonts too, in which case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
# it is best to enable DPS support until such time as 2D's rasteriser
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
# can fully handle Type1 fonts in all cases. Default is "yes".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
# HAVE_DPS should only be "no" if the platform has no DPS headers or libs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
# DPS (Displayable PostScript) is available on Solaris machines
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
HAVE_DPS = no
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
# Japanese manpages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
JA_SOURCE_ENCODING = eucJP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
JA_TARGET_ENCODINGS = eucJP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
# Settings for the JDI - Serviceability Agent binding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
HOTSPOT_SALIB_PATH   = $(HOTSPOT_IMPORT_PATH)/jre/lib/$(LIBARCH)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
SALIB_NAME = $(LIB_PREFIX)saproc.$(LIBRARY_SUFFIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
# The JDI - Serviceability Agent binding is not currently supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
# on Linux-ia64.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
ifeq ($(ARCH), ia64)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
  INCLUDE_SA = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
  INCLUDE_SA = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352