1035-GNUmakefile.tst.sparcv9.patch revision 402
4721N/A--- stdcxx-4.2.1/etc/config/GNUmakefile.tst 2008-04-24 20:25:50.000000000 -0400
4721N/A+++ stdcxx-4.2.1/etc/config/GNUmakefile.tst 2009-03-30 11:15:57.061730000 -0400
4721N/A@@ -48,6 +48,16 @@
4721N/A #
4721N/A ########################################################################
4721N/A
4721N/A+arch := $(shell mach)
4721N/A+
4721N/A+ifeq ($(arch),sparc)
4721N/A+ XREGS := -xregs=appl
4721N/A+ XMEMALIGN := -xmemalign=16i
4721N/A+else
4721N/A+ XREGS := -xregs=no%frameptr
4721N/A+ XMEMALIGN :=
4721N/A+endif
4721N/A+
4721N/A include ../makefile.in
4721N/A
4721N/A # tests & rwtest library directories
4721N/A@@ -67,6 +77,7 @@
4721N/A
4721N/A # do not compile these sources
5680N/A OMIT_SRCS += $(notdir $(wildcard $(TESTDIR)/src/*.cpp)) 22_locale.cpp
4721N/A+OMIT_SRCS += $(notdir $(wildcard $(TESTDIR)/regress/*.cpp)) 26.valarray.binary.stdcxx-237.cpp
5680N/A
4721N/A # override setting from makefile.in (tests only)
4721N/A CATFILE = rwstdmessages.cat
4721N/A