comparison build/linux/makefiles/buildtree.make @ 50:485d403e94e1

6452081: 3/4 Allow for Linux builds with Sun Studio Linux compilers Summary: (for Serguei) Allow for Linux builds with Sun Studio Linux compilers Reviewed-by: sspitsyn, ohair
author dcubed
date Wed, 12 Mar 2008 18:37:03 -0700
parents a61af66fc99e
children
comparison
equal deleted inserted replaced
49:31000d79ec71 50:485d403e94e1
61 QUIETLY$(MAKE_VERBOSE) = @ 61 QUIETLY$(MAKE_VERBOSE) = @
62 62
63 # For now, until the compiler is less wobbly: 63 # For now, until the compiler is less wobbly:
64 TESTFLAGS = -Xbatch -showversion 64 TESTFLAGS = -Xbatch -showversion
65 65
66 PLATFORM_FILE = $(GAMMADIR)/build/$(OS_FAMILY)/platform_$(BUILDARCH) 66 ifdef USE_SUNCC
67 PLATFORM_FILE = $(GAMMADIR)/build/$(OS_FAMILY)/platform_$(BUILDARCH).suncc
68 else
69 PLATFORM_FILE = $(GAMMADIR)/build/$(OS_FAMILY)/platform_$(BUILDARCH)
70 endif
67 71
68 ifdef FORCE_TIERED 72 ifdef FORCE_TIERED
69 ifeq ($(VARIANT),tiered) 73 ifeq ($(VARIANT),tiered)
70 PLATFORM_DIR = $(OS_FAMILY)_$(BUILDARCH)_compiler2 74 PLATFORM_DIR = $(OS_FAMILY)_$(BUILDARCH)_compiler2
71 else 75 else