make/solaris/makefiles/sparcWorks.make

Wed, 07 Jul 2010 15:35:58 -0700

author
mchung
date
Wed, 07 Jul 2010 15:35:58 -0700
changeset 1997
0e7d2a08b605
parent 1907
c18cbe5936b8
child 2042
fb8abd207dbe
permissions
-rw-r--r--

6967423: Hotspot support for modules image
Summary: Add hotspot support for modules image
Reviewed-by: acorn

duke@435 1 #
trims@1907 2 # Copyright (c) 1998, 2009, Oracle and/or its affiliates. All rights reserved.
duke@435 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 #
duke@435 5 # This code is free software; you can redistribute it and/or modify it
duke@435 6 # under the terms of the GNU General Public License version 2 only, as
duke@435 7 # published by the Free Software Foundation.
duke@435 8 #
duke@435 9 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 # accompanied this code).
duke@435 14 #
duke@435 15 # You should have received a copy of the GNU General Public License version
duke@435 16 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 #
trims@1907 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 # or visit www.oracle.com if you need additional information or have any
trims@1907 21 # questions.
duke@435 22 #
duke@435 23 #
duke@435 24
duke@435 25 # Compiler-specific flags for sparcworks.
duke@435 26
duke@435 27 # tell make which C and C++ compilers to use
duke@435 28 CC = cc
duke@435 29 CPP = CC
duke@435 30
ohair@593 31 # Note that this 'as' is an older version of the Sun Studio 'fbe', and will
ohair@593 32 # use the older style options. The 'fbe' options will match 'cc' and 'CC'.
duke@435 33 AS = /usr/ccs/bin/as
duke@435 34
duke@435 35 NM = /usr/ccs/bin/nm
duke@435 36 NAWK = /bin/nawk
duke@435 37
duke@435 38 REORDER_FLAG = -xF
duke@435 39
duke@435 40 # Check for the versions of C++ and C compilers ($CPP and $CC) used.
duke@435 41
duke@435 42 # Get the last thing on the line that looks like x.x+ (x is a digit).
duke@435 43 COMPILER_REV := \
kvn@865 44 $(shell $(CPP) -V 2>&1 | sed -n 's/^.*[ ,\t]C++[ ,\t]\([1-9]\.[0-9][0-9]*\).*/\1/p')
duke@435 45 C_COMPILER_REV := \
kvn@865 46 $(shell $(CC) -V 2>&1 | sed -n 's/^.*[ ,\t]C[ ,\t]\([1-9]\.[0-9][0-9]*\).*/\1/p')
duke@435 47
ohair@593 48 # Pick which compiler is validated
kvn@1159 49 ifeq ($(JRE_RELEASE_VER),1.6.0)
ohair@593 50 # Validated compiler for JDK6 is SS11 (5.8)
jcoomes@1902 51 VALIDATED_COMPILER_REVS := 5.8
jcoomes@1902 52 VALIDATED_C_COMPILER_REVS := 5.8
ohair@593 53 else
jcoomes@1902 54 # Validated compilers for JDK7 are SS12 (5.9) or SS12 update 1 (5.10)
jcoomes@1902 55 VALIDATED_COMPILER_REVS := 5.9 5.10
jcoomes@1902 56 VALIDATED_C_COMPILER_REVS := 5.9 5.10
ohair@593 57 endif
duke@435 58
jcoomes@1902 59 # Warning messages about not using the above validated versions
jcoomes@1902 60 ENFORCE_COMPILER_REV${ENFORCE_COMPILER_REV} := $(strip ${VALIDATED_COMPILER_REVS})
jcoomes@1902 61 ifeq ($(filter ${ENFORCE_COMPILER_REV},${COMPILER_REV}),)
jcoomes@1902 62 PRINTABLE_CC_REVS := $(subst $(shell echo ' '), or ,${ENFORCE_COMPILER_REV})
jcoomes@1902 63 dummy_var_to_enforce_compiler_rev := $(shell \
jcoomes@1902 64 echo >&2 WARNING: You are using CC version ${COMPILER_REV} and \
jcoomes@1902 65 should be using version ${PRINTABLE_CC_REVS}.; \
jcoomes@1902 66 echo >&2 Set ENFORCE_COMPILER_REV=${COMPILER_REV} to avoid this \
jcoomes@1902 67 warning.)
duke@435 68 endif
duke@435 69
jcoomes@1902 70 ENFORCE_C_COMPILER_REV${ENFORCE_C_COMPILER_REV} := $(strip ${VALIDATED_C_COMPILER_REVS})
jcoomes@1902 71 ifeq ($(filter ${ENFORCE_C_COMPILER_REV},${C_COMPILER_REV}),)
jcoomes@1902 72 PRINTABLE_C_REVS := $(subst $(shell echo ' '), or ,${ENFORCE_C_COMPILER_REV})
jcoomes@1902 73 dummy_var_to_enforce_c_compiler_rev := $(shell \
jcoomes@1902 74 echo >&2 WARNING: You are using cc version ${C_COMPILER_REV} and \
jcoomes@1902 75 should be using version ${PRINTABLE_C_REVS}.; \
jcoomes@1902 76 echo >&2 Set ENFORCE_C_COMPILER_REV=${C_COMPILER_REV} to avoid this \
jcoomes@1902 77 warning.)
duke@435 78 endif
duke@435 79
kvn@865 80 COMPILER_REV_NUMERIC := $(shell echo $(COMPILER_REV) | awk -F. '{ print $$1 * 100 + $$2 }')
kvn@865 81
duke@435 82 # Fail the build if __fabsf is used. __fabsf exists only in Solaris 8 2/04
duke@435 83 # and newer; objects with a dependency on this symbol will not run on older
duke@435 84 # Solaris 8.
duke@435 85 JVM_FAIL_IF_UNDEFINED = __fabsf
duke@435 86
duke@435 87 JVM_CHECK_SYMBOLS = $(NM) -u -p $(LIBJVM.o) | \
duke@435 88 $(NAWK) -v f="${JVM_FAIL_IF_UNDEFINED}" \
duke@435 89 'BEGIN { c=split(f,s); rc=0; } \
duke@435 90 /:$$/ { file = $$1; } \
duke@435 91 /[^:]$$/ { for(n=1;n<=c;++n) { \
duke@435 92 if($$1==s[n]) { \
duke@435 93 printf("JVM_CHECK_SYMBOLS: %s contains illegal symbol %s\n", \
duke@435 94 file,$$1); \
duke@435 95 rc=1; \
duke@435 96 } \
duke@435 97 } \
duke@435 98 } \
duke@435 99 END { exit rc; }'
duke@435 100
duke@435 101 LINK_LIB.CC/PRE_HOOK += $(JVM_CHECK_SYMBOLS) || exit 1;
duke@435 102
duke@435 103 # Some interfaces (_lwp_create) changed with LP64 and Solaris 7
duke@435 104 SOLARIS_7_OR_LATER := \
duke@435 105 $(shell uname -r | awk -F. '{ if ($$2 >= 7) print "-DSOLARIS_7_OR_LATER"; }')
duke@435 106 CFLAGS += ${SOLARIS_7_OR_LATER}
duke@435 107
ohair@593 108 # New architecture options started in SS12 (5.9), we need both styles to build.
ohair@593 109 # The older arch options for SS11 (5.8) or older and also for /usr/ccs/bin/as.
kvn@1159 110 # Note: default for 32bit sparc is now the same as v8plus, so the
kvn@1159 111 # settings below have changed all 32bit sparc builds to be v8plus.
kvn@1159 112 ARCHFLAG_OLD/sparc = -xarch=v8plus
ohair@593 113 ARCHFLAG_NEW/sparc = -m32 -xarch=sparc
ohair@593 114 ARCHFLAG_OLD/sparcv9 = -xarch=v9
ohair@593 115 ARCHFLAG_NEW/sparcv9 = -m64 -xarch=sparc
ohair@593 116 ARCHFLAG_OLD/i486 =
ohair@593 117 ARCHFLAG_NEW/i486 = -m32
ohair@593 118 ARCHFLAG_OLD/amd64 = -xarch=amd64
ohair@593 119 ARCHFLAG_NEW/amd64 = -m64
ohair@593 120
ohair@593 121 # Select the ARCHFLAGs and other SS12 (5.9) options
kvn@865 122 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
ohair@593 123 ARCHFLAG/sparc = $(ARCHFLAG_NEW/sparc)
ohair@593 124 ARCHFLAG/sparcv9 = $(ARCHFLAG_NEW/sparcv9)
ohair@593 125 ARCHFLAG/i486 = $(ARCHFLAG_NEW/i486)
ohair@593 126 ARCHFLAG/amd64 = $(ARCHFLAG_NEW/amd64)
duke@435 127 else
ohair@593 128 ARCHFLAG/sparc = $(ARCHFLAG_OLD/sparc)
ohair@593 129 ARCHFLAG/sparcv9 = $(ARCHFLAG_OLD/sparcv9)
ohair@593 130 ARCHFLAG/i486 = $(ARCHFLAG_OLD/i486)
ohair@593 131 ARCHFLAG/amd64 = $(ARCHFLAG_OLD/amd64)
duke@435 132 endif
ohair@593 133
ohair@593 134 # ARCHFLAGS for the current build arch
ohair@593 135 ARCHFLAG = $(ARCHFLAG/$(BUILDARCH))
ohair@593 136 AS_ARCHFLAG = $(ARCHFLAG_OLD/$(BUILDARCH))
duke@435 137
duke@435 138 # Optional sub-directory in /usr/lib where BUILDARCH libraries are kept.
duke@435 139 ISA_DIR=$(ISA_DIR/$(BUILDARCH))
duke@435 140 ISA_DIR/sparcv9=/sparcv9
duke@435 141 ISA_DIR/amd64=/amd64
duke@435 142
duke@435 143 # Use these to work around compiler bugs:
duke@435 144 OPT_CFLAGS/SLOWER=-xO3
duke@435 145 OPT_CFLAGS/O2=-xO2
duke@435 146 OPT_CFLAGS/NOOPT=-xO1
duke@435 147
jcoomes@1902 148 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
jcoomes@1902 149 ifeq ($(Platform_arch), x86)
jcoomes@1902 150 OPT_CFLAGS/NO_TAIL_CALL_OPT = -Wu,-O~yz
jcoomes@1902 151 OPT_CCFLAGS/NO_TAIL_CALL_OPT = -Qoption ube -O~yz
jcoomes@1902 152 endif # Platform_arch == x86
jcoomes@1902 153 endif # COMPILER_REV_NUMERIC >= 509
jcoomes@1902 154
duke@435 155 #################################################
duke@435 156 # Begin current (>=5.6) Forte compiler options #
duke@435 157 #################################################
duke@435 158
kvn@865 159 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 506), 1)
duke@435 160
duke@435 161 ifeq ("${Platform_arch}", "sparc")
duke@435 162
duke@435 163 # We MUST allow data alignment of 4 for sparc (sparcv9 is ok at 8s)
duke@435 164 ifndef LP64
duke@435 165 CFLAGS += -xmemalign=4s
duke@435 166 endif
duke@435 167
duke@435 168 endif
duke@435 169
duke@435 170 endif
duke@435 171
duke@435 172 #################################################
duke@435 173 # Begin current (>=5.5) Forte compiler options #
duke@435 174 #################################################
duke@435 175
kvn@865 176 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 505), 1)
duke@435 177
duke@435 178 CFLAGS += $(ARCHFLAG)
duke@435 179 AOUT_FLAGS += $(ARCHFLAG)
duke@435 180 LIB_FLAGS += $(ARCHFLAG)
duke@435 181 LFLAGS += $(ARCHFLAG)
duke@435 182
duke@435 183 ifeq ("${Platform_arch}", "sparc")
duke@435 184
duke@435 185 # Flags for Optimization
duke@435 186
duke@435 187 # [phh] Commented out pending verification that we do indeed want
duke@435 188 # to potentially bias against u1 and u3 targets.
duke@435 189 #CFLAGS += -xchip=ultra2
duke@435 190
duke@435 191 OPT_CFLAGS=-xO4 $(EXTRA_OPT_CFLAGS)
duke@435 192
duke@435 193 endif # sparc
duke@435 194
duke@435 195 ifeq ("${Platform_arch_model}", "x86_32")
duke@435 196
jcoomes@1902 197 OPT_CFLAGS=-xtarget=pentium -xO4 $(EXTRA_OPT_CFLAGS)
duke@435 198
duke@435 199 endif # 32bit x86
duke@435 200
duke@435 201 ifeq ("${Platform_arch_model}", "x86_64")
duke@435 202
ohair@593 203 ASFLAGS += $(AS_ARCHFLAG)
ohair@593 204 CFLAGS += $(ARCHFLAG/amd64)
duke@435 205 # this one seemed useless
ohair@593 206 LFLAGS_VM += $(ARCHFLAG/amd64)
duke@435 207 # this one worked
ohair@593 208 LFLAGS += $(ARCHFLAG/amd64)
ohair@593 209 AOUT_FLAGS += $(ARCHFLAG/amd64)
duke@435 210
duke@435 211 # -xO3 is faster than -xO4 on specjbb with SS10 compiler
duke@435 212 OPT_CFLAGS=-xO4 $(EXTRA_OPT_CFLAGS)
duke@435 213
duke@435 214 endif # 64bit x86
duke@435 215
duke@435 216 # Inline functions
duke@435 217 CFLAGS += $(GAMMADIR)/src/os_cpu/solaris_${Platform_arch}/vm/solaris_${Platform_arch_model}.il
duke@435 218
duke@435 219 # no more exceptions
duke@435 220 CFLAGS/NOEX=-features=no%except
duke@435 221
coleenp@548 222
coleenp@548 223 # avoid compilation problems arising from fact that C++ compiler tries
coleenp@548 224 # to search for external template definition by just compiling additional
coleenp@548 225 # source files in th same context
coleenp@548 226 CFLAGS += -template=no%extdef
coleenp@548 227
duke@435 228 # Reduce code bloat by reverting back to 5.0 behavior for static initializers
duke@435 229 CFLAGS += -features=no%split_init
duke@435 230
duke@435 231 # Use -D_Crun_inline_placement so we don't get references to
duke@435 232 # __1c2n6FIpv_0_ or void*operator new(unsigned,void*)
duke@435 233 # This avoids the hard requirement of the newer Solaris C++ runtime patches.
duke@435 234 # NOTE: This is an undocumented feature of the SS10 compiler. See 6306698.
duke@435 235 CFLAGS += -D_Crun_inline_placement
duke@435 236
duke@435 237 # PIC is safer for SPARC, and is considerably slower
duke@435 238 # a file foo.o which wants to compile -pic can set "PICFLAG/foo.o = -PIC"
duke@435 239 PICFLAG = -KPIC
duke@435 240 PICFLAG/DEFAULT = $(PICFLAG)
duke@435 241 # [RGV] Need to figure which files to remove to get link to work
duke@435 242 #PICFLAG/BETTER = -pic
duke@435 243 PICFLAG/BETTER = $(PICFLAG/DEFAULT)
duke@435 244 PICFLAG/BYFILE = $(PICFLAG/$@)$(PICFLAG/DEFAULT$(PICFLAG/$@))
duke@435 245
duke@435 246 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
duke@435 247 MAPFLAG = -M FILENAME
duke@435 248
duke@435 249 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
duke@435 250 SONAMEFLAG = -h SONAME
duke@435 251
duke@435 252 # Build shared library
duke@435 253 SHARED_FLAG = -G
duke@435 254
duke@435 255 # We don't need libCstd.so and librwtools7.so, only libCrun.so
duke@435 256 CFLAGS += -library=%none
duke@435 257 LFLAGS += -library=%none
duke@435 258
duke@435 259 LFLAGS += -mt
duke@435 260
kvn@865 261 endif # COMPILER_REV_NUMERIC >= 505
duke@435 262
duke@435 263 ######################################
duke@435 264 # End 5.5 Forte compiler options #
duke@435 265 ######################################
duke@435 266
duke@435 267 ######################################
duke@435 268 # Begin 5.2 Forte compiler options #
duke@435 269 ######################################
duke@435 270
kvn@865 271 ifeq ($(COMPILER_REV_NUMERIC), 502)
duke@435 272
duke@435 273 CFLAGS += $(ARCHFLAG)
duke@435 274 AOUT_FLAGS += $(ARCHFLAG)
duke@435 275 LIB_FLAGS += $(ARCHFLAG)
duke@435 276 LFLAGS += $(ARCHFLAG)
duke@435 277
duke@435 278 ifeq ("${Platform_arch}", "sparc")
duke@435 279
duke@435 280 # Flags for Optimization
duke@435 281
duke@435 282 # [phh] Commented out pending verification that we do indeed want
duke@435 283 # to potentially bias against u1 and u3 targets.
duke@435 284 #CFLAGS += -xchip=ultra2
duke@435 285
duke@435 286 ifdef LP64
duke@435 287 # SC5.0 tools on v9 are flakey at -xO4
duke@435 288 # [phh] Is this still true for 6.1?
duke@435 289 OPT_CFLAGS=-xO3 $(EXTRA_OPT_CFLAGS)
duke@435 290 else
duke@435 291 OPT_CFLAGS=-xO4 $(EXTRA_OPT_CFLAGS)
duke@435 292 endif
duke@435 293
duke@435 294 endif # sparc
duke@435 295
duke@435 296 ifeq ("${Platform_arch_model}", "x86_32")
duke@435 297
duke@435 298 OPT_CFLAGS=-xtarget=pentium $(EXTRA_OPT_CFLAGS)
duke@435 299
duke@435 300 # SC5.0 tools on x86 are flakey at -xO4
duke@435 301 # [phh] Is this still true for 6.1?
duke@435 302 OPT_CFLAGS+=-xO3
duke@435 303
duke@435 304 endif # 32bit x86
duke@435 305
duke@435 306 # no more exceptions
duke@435 307 CFLAGS/NOEX=-noex
duke@435 308
phh@1558 309 # Inline functions
phh@1558 310 CFLAGS += $(GAMMADIR)/src/os_cpu/solaris_${Platform_arch}/vm/solaris_${Platform_arch_model}.il
phh@1558 311
duke@435 312 # Reduce code bloat by reverting back to 5.0 behavior for static initializers
duke@435 313 CFLAGS += -Qoption ccfe -one_static_init
duke@435 314
duke@435 315 # PIC is safer for SPARC, and is considerably slower
duke@435 316 # a file foo.o which wants to compile -pic can set "PICFLAG/foo.o = -PIC"
duke@435 317 PICFLAG = -KPIC
duke@435 318 PICFLAG/DEFAULT = $(PICFLAG)
duke@435 319 # [RGV] Need to figure which files to remove to get link to work
duke@435 320 #PICFLAG/BETTER = -pic
duke@435 321 PICFLAG/BETTER = $(PICFLAG/DEFAULT)
duke@435 322 PICFLAG/BYFILE = $(PICFLAG/$@)$(PICFLAG/DEFAULT$(PICFLAG/$@))
duke@435 323
phh@1558 324 # Use $(MAPFLAG:FILENAME=real_file_name) to specify a map file.
phh@1558 325 MAPFLAG = -M FILENAME
phh@1558 326
phh@1558 327 # Use $(SONAMEFLAG:SONAME=soname) to specify the intrinsic name of a shared obj
phh@1558 328 SONAMEFLAG = -h SONAME
phh@1558 329
phh@1558 330 # Build shared library
phh@1558 331 SHARED_FLAG = -G
phh@1558 332
duke@435 333 # Would be better if these weren't needed, since we link with CC, but
duke@435 334 # at present removing them causes run-time errors
duke@435 335 LFLAGS += -library=Crun
duke@435 336 LIBS += -library=Crun -lCrun
duke@435 337
kvn@865 338 endif # COMPILER_REV_NUMERIC == 502
duke@435 339
duke@435 340 ##################################
duke@435 341 # End 5.2 Forte compiler options #
duke@435 342 ##################################
duke@435 343
duke@435 344 ##################################
duke@435 345 # Begin old 5.1 compiler options #
duke@435 346 ##################################
kvn@865 347 ifeq ($(COMPILER_REV_NUMERIC), 501)
duke@435 348
duke@435 349 _JUNK_ := $(shell echo >&2 \
duke@435 350 "*** ERROR: sparkWorks.make incomplete for 5.1 compiler")
duke@435 351 @exit 1
duke@435 352 endif
duke@435 353 ##################################
duke@435 354 # End old 5.1 compiler options #
duke@435 355 ##################################
duke@435 356
duke@435 357 ##################################
duke@435 358 # Begin old 5.0 compiler options #
duke@435 359 ##################################
duke@435 360
kvn@865 361 ifeq (${COMPILER_REV_NUMERIC}, 500)
duke@435 362
duke@435 363 # Had to hoist this higher apparently because of other changes. Must
duke@435 364 # come before -xarch specification.
ohair@593 365 # NOTE: native says optimize for the machine doing the compile, bad news.
duke@435 366 CFLAGS += -xtarget=native
duke@435 367
duke@435 368 CFLAGS += $(ARCHFLAG)
duke@435 369 AOUT_FLAGS += $(ARCHFLAG)
duke@435 370 LIB_FLAGS += $(ARCHFLAG)
duke@435 371 LFLAGS += $(ARCHFLAG)
duke@435 372
duke@435 373 CFLAGS += -library=iostream
duke@435 374 LFLAGS += -library=iostream -library=Crun
duke@435 375 LIBS += -library=iostream -library=Crun -lCrun
duke@435 376
duke@435 377 # Flags for Optimization
duke@435 378 ifdef LP64
duke@435 379 # SC5.0 tools on v9 are flakey at -xO4
duke@435 380 OPT_CFLAGS=-xO3 $(EXTRA_OPT_CFLAGS)
duke@435 381 else
duke@435 382 OPT_CFLAGS=-xO4 $(EXTRA_OPT_CFLAGS)
duke@435 383 endif
duke@435 384
duke@435 385 ifeq ("${Platform_arch}", "sparc")
duke@435 386
duke@435 387 CFLAGS += $(GAMMADIR)/src/os_cpu/solaris_sparc/vm/atomic_solaris_sparc.il
duke@435 388
duke@435 389 endif # sparc
duke@435 390
duke@435 391 ifeq ("${Platform_arch_model}", "x86_32")
duke@435 392 OPT_CFLAGS=-xtarget=pentium $(EXTRA_OPT_CFLAGS)
kvn@865 393 ifeq ("${COMPILER_REV_NUMERIC}", "500")
duke@435 394 # SC5.0 tools on x86 are flakey at -xO4
duke@435 395 OPT_CFLAGS+=-xO3
duke@435 396 else
duke@435 397 OPT_CFLAGS+=-xO4
duke@435 398 endif
duke@435 399
duke@435 400 CFLAGS += $(GAMMADIR)/src/os_cpu/solaris_x86/vm/solaris_x86_32.il
duke@435 401
duke@435 402 endif # 32bit x86
duke@435 403
duke@435 404 # The following options run into misaligned ldd problem (raj)
ohair@593 405 #OPT_CFLAGS = -fast -O4 $(ARCHFLAG/sparc) -xchip=ultra
duke@435 406
duke@435 407 # no more exceptions
duke@435 408 CFLAGS/NOEX=-noex
duke@435 409
duke@435 410 # PIC is safer for SPARC, and is considerably slower
duke@435 411 # a file foo.o which wants to compile -pic can set "PICFLAG/foo.o = -PIC"
duke@435 412 PICFLAG = -PIC
duke@435 413 PICFLAG/DEFAULT = $(PICFLAG)
duke@435 414 # [RGV] Need to figure which files to remove to get link to work
duke@435 415 #PICFLAG/BETTER = -pic
duke@435 416 PICFLAG/BETTER = $(PICFLAG/DEFAULT)
duke@435 417 PICFLAG/BYFILE = $(PICFLAG/$@)$(PICFLAG/DEFAULT$(PICFLAG/$@))
duke@435 418
kvn@865 419 endif # COMPILER_REV_NUMERIC = 500
duke@435 420
duke@435 421 ################################
duke@435 422 # End old 5.0 compiler options #
duke@435 423 ################################
duke@435 424
kvn@865 425 ifeq ("${COMPILER_REV_NUMERIC}", "402")
duke@435 426 # 4.2 COMPILERS SHOULD NO LONGER BE USED
duke@435 427 _JUNK_ := $(shell echo >&2 \
duke@435 428 "*** ERROR: SC4.2 compilers are not supported by this code base!")
duke@435 429 @exit 1
duke@435 430 endif
duke@435 431
duke@435 432 # do not include shared lib path in a.outs
duke@435 433 AOUT_FLAGS += -norunpath
duke@435 434 LFLAGS_VM = -norunpath -z noversion
duke@435 435
duke@435 436 # need position-indep-code for shared libraries
duke@435 437 # (ild appears to get errors on PIC code, so we'll try non-PIC for debug)
duke@435 438 ifeq ($(PICFLAGS),DEFAULT)
duke@435 439 VM_PICFLAG/LIBJVM = $(PICFLAG/DEFAULT)
duke@435 440 else
duke@435 441 VM_PICFLAG/LIBJVM = $(PICFLAG/BYFILE)
duke@435 442 endif
duke@435 443 VM_PICFLAG/AOUT =
duke@435 444
duke@435 445 VM_PICFLAG = $(VM_PICFLAG/$(LINK_INTO))
duke@435 446 CFLAGS += $(VM_PICFLAG)
duke@435 447
duke@435 448 # less dynamic linking (no PLTs, please)
duke@435 449 #LIB_FLAGS += $(LINK_MODE)
duke@435 450 # %%%%% despite -znodefs, -Bsymbolic gets link errors -- Rose
duke@435 451
duke@435 452 LINK_MODE = $(LINK_MODE/$(VERSION))
duke@435 453 LINK_MODE/debug =
duke@435 454 LINK_MODE/optimized = -Bsymbolic -znodefs
duke@435 455
duke@435 456 # Have thread local errnos
kvn@865 457 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 505), 1)
duke@435 458 CFLAGS += -mt
duke@435 459 else
duke@435 460 CFLAGS += -D_REENTRANT
duke@435 461 endif
duke@435 462
duke@435 463 ifdef CC_INTERP
duke@435 464 # C++ Interpreter
duke@435 465 CFLAGS += -DCC_INTERP
duke@435 466 endif
duke@435 467
duke@435 468 # Flags for Debugging
duke@435 469 DEBUG_CFLAGS = -g
duke@435 470 FASTDEBUG_CFLAGS = -g0
duke@435 471 # The -g0 setting allows the C++ frontend to inline, which is a big win.
duke@435 472
ohair@593 473 # Special global options for SS12
jcoomes@1902 474 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \>= 509), 1)
ohair@593 475 # There appears to be multiple issues with the new Dwarf2 debug format, so
ohair@593 476 # we tell the compiler to use the older 'stabs' debug format all the time.
ohair@593 477 # Note that this needs to be used in optimized compiles too to be 100%.
ohair@593 478 # This is a workaround for SS12 (5.9) bug 6694600
ohair@593 479 CFLAGS += -xdebugformat=stabs
ohair@593 480 endif
ohair@593 481
duke@435 482 # Enable the following CFLAGS additions if you need to compare the
duke@435 483 # built ELF objects.
duke@435 484 #
duke@435 485 # The -g option makes static data global and the "-Qoption ccfe
duke@435 486 # -xglobalstatic" option tells the compiler to not globalize static
duke@435 487 # data using a unique globalization prefix. Instead force the use of
duke@435 488 # a static globalization prefix based on the source filepath so the
duke@435 489 # objects from two identical compilations are the same.
duke@435 490 #DEBUG_CFLAGS += -Qoption ccfe -xglobalstatic
duke@435 491 #FASTDEBUG_CFLAGS += -Qoption ccfe -xglobalstatic
duke@435 492
kvn@865 493 ifeq (${COMPILER_REV_NUMERIC}, 502)
kvn@865 494 COMPILER_DATE := $(shell $(CPP) -V 2>&1 | sed -n '/^.*[ ]C++[ ]\([1-9]\.[0-9][0-9]*\)/p' | awk '{ print $$NF; }')
duke@435 495 ifeq (${COMPILER_DATE}, 2001/01/31)
duke@435 496 # disable -g0 in fastdebug since SC6.1 dated 2001/01/31 seems to be buggy
duke@435 497 # use an innocuous value because it will get -g if it's empty
duke@435 498 FASTDEBUG_CFLAGS = -c
duke@435 499 endif
duke@435 500 endif
duke@435 501
duke@435 502 # Uncomment or 'gmake CFLAGS_BROWSE=-sbfast' to get source browser information.
duke@435 503 # CFLAGS_BROWSE = -sbfast
duke@435 504 CFLAGS += $(CFLAGS_BROWSE)
duke@435 505
duke@435 506 # ILD is gone as of SS11 (5.8), not supportted in SS10 (5.7)
kvn@865 507 ifeq ($(shell expr $(COMPILER_REV_NUMERIC) \< 507), 1)
duke@435 508 # use ild when debugging (but when optimizing we want reproducible results)
duke@435 509 ILDFLAG = $(ILDFLAG/$(VERSION))
duke@435 510 ILDFLAG/debug = -xildon
duke@435 511 ILDFLAG/optimized =
duke@435 512 AOUT_FLAGS += $(ILDFLAG)
duke@435 513 endif
duke@435 514
duke@435 515 # Where to put the *.o files (a.out, or shared library)?
duke@435 516 LINK_INTO = $(LINK_INTO/$(VERSION))
duke@435 517 LINK_INTO/debug = LIBJVM
duke@435 518 LINK_INTO/optimized = LIBJVM
duke@435 519
duke@435 520 # We link the debug version into the a.out because:
duke@435 521 # 1. ild works on a.out but not shared libraries, and using ild
duke@435 522 # can cut rebuild times by 25% for small changes. (ILD is gone in SS11)
duke@435 523 # 2. dbx cannot gracefully set breakpoints in shared libraries
duke@435 524 #
duke@435 525
duke@435 526 # apply this setting to link into the shared library even in the debug version:
duke@435 527 ifdef LP64
duke@435 528 LINK_INTO = LIBJVM
duke@435 529 else
duke@435 530 #LINK_INTO = LIBJVM
duke@435 531 endif
duke@435 532
duke@435 533 MCS = /usr/ccs/bin/mcs
duke@435 534 STRIP = /usr/ccs/bin/strip
duke@435 535
duke@435 536 # Solaris platforms collect lots of redundant file-ident lines,
duke@435 537 # to the point of wasting a significant percentage of file space.
duke@435 538 # (The text is stored in ELF .comment sections, contributed by
duke@435 539 # all "#pragma ident" directives in header and source files.)
duke@435 540 # This command "compresses" the .comment sections simply by
duke@435 541 # removing repeated lines. The data can be extracted from
duke@435 542 # binaries in the field by using "mcs -p libjvm.so" or the older
duke@435 543 # command "what libjvm.so".
duke@435 544 LINK_LIB.CC/POST_HOOK += $(MCS) -c $@ || exit 1;
duke@435 545 # (The exit 1 is necessary to cause a build failure if the command fails and
duke@435 546 # multiple commands are strung together, and the final semicolon is necessary
duke@435 547 # since the hook must terminate itself as a valid command.)
duke@435 548
duke@435 549 # Also, strip debug and line number information (worth about 1.7Mb).
duke@435 550 STRIP_LIB.CC/POST_HOOK = $(STRIP) -x $@ || exit 1;
duke@435 551 # STRIP_LIB.CC/POST_HOOK is incorporated into LINK_LIB.CC/POST_HOOK
duke@435 552 # in certain configurations, such as product.make. Other configurations,
duke@435 553 # such as debug.make, do not include the strip operation.

mercurial