From 25bd17a17d7e3bb9e2b9e7e0510186669006dcf4 Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Mon, 23 Sep 2002 20:31:30 +0000 Subject: [PATCH] adding support for hpux ia64/11.20, also strip off MOZ_OPTIMIZE_FLAGS (instead of just -O) for hpux r=cls@seawood.org # 136163 git-svn-id: svn://10.0.0.236/trunk@130279 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in b/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in index 5f406153924..cb46469f18b 100644 --- a/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in +++ b/mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in @@ -143,11 +143,16 @@ endif # for gas and gcc, check comment in xptcinvoke_asm_pa32.s ifeq ($(OS_ARCH),HP-UX) ifneq ($(CC),gcc) +ifneq ($(OS_TEST),ia64) CPPSRCS := xptcinvoke_pa32.cpp xptcstubs_pa32.cpp ASFILES := xptcstubs_asm_pa32.s xptcinvoke_asm_pa32.s +else +CPPSRCS := xptcinvoke_ipf32.cpp xptcstubs_ipf32.cpp +ASFILES := xptcstubs_asm_ipf32.s xptcinvoke_asm_ipf32.s +endif # #18875 Building the CPP's (CXX) optimized causes a crash -CXXFLAGS := $(filter-out -O, $(CXXFLAGS)) +CXXFLAGS := $(filter-out $(MOZ_OPTIMIZE_FLAGS), $(CXXFLAGS)) endif endif