comparison make/solaris/makefiles/debug.make @ 158:a49545cab84a

6563752: Build and test JDK7 with Sun Studio 12 Express compilers (prep makefiles) Summary: Allows for building with SS12, no longer requires SS11, warns if not SS11 for now. Once SS12 is validated and performance measurements look ok, SS12 will be the validated compiler. Reviewed-by: sspitsyn, ikrylov
author ohair
date Tue, 27 May 2008 09:47:18 -0700
parents a294fd0c4b38
children d1605aabd0a1
comparison
equal deleted inserted replaced
157:a3e5744fafda 158:a49545cab84a
27 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make 27 # Compiler specific DEBUG_CFLAGS are passed in from gcc.make, sparcWorks.make
28 DEBUG_CFLAGS/DEFAULT= $(DEBUG_CFLAGS) 28 DEBUG_CFLAGS/DEFAULT= $(DEBUG_CFLAGS)
29 DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@)) 29 DEBUG_CFLAGS/BYFILE = $(DEBUG_CFLAGS/$@)$(DEBUG_CFLAGS/DEFAULT$(DEBUG_CFLAGS/$@))
30 30
31 ifeq ("${Platform_compiler}", "sparcWorks") 31 ifeq ("${Platform_compiler}", "sparcWorks")
32 ifeq ($(shell expr $(COMPILER_REV) \>= 5.8), 1) 32
33 ifeq ($(COMPILER_REV),5.8)
33 # SS11 SEGV when compiling with -g and -xarch=v8, using different backend 34 # SS11 SEGV when compiling with -g and -xarch=v8, using different backend
34 DEBUG_CFLAGS/compileBroker.o = $(DEBUG_CFLAGS) -xO0 35 DEBUG_CFLAGS/compileBroker.o = $(DEBUG_CFLAGS) -xO0
35 DEBUG_CFLAGS/jvmtiTagMap.o = $(DEBUG_CFLAGS) -xO0 36 DEBUG_CFLAGS/jvmtiTagMap.o = $(DEBUG_CFLAGS) -xO0
36 endif 37 endif
37 endif 38 endif