summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcls%seawood.org <devnull@localhost>2001-05-24 22:03:20 +0000
committercls%seawood.org <devnull@localhost>2001-05-24 22:03:20 +0000
commit621806e505ae839462d447ddbd1769612d6652c1 (patch)
treebfc102fbea6602502d1a7dcee0a476bb0497677c
parent85b83f290042e07858926591854733149ef909a5 (diff)
downloadnss-hg-621806e505ae839462d447ddbd1769612d6652c1.tar.gz
Allow freebl to build on IRIX using gcc.
Thanks to John Vandenberg <zeroJ@null.net> for the patch. Bug #80809
-rw-r--r--security/nss/lib/freebl/Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/security/nss/lib/freebl/Makefile.in b/security/nss/lib/freebl/Makefile.in
index 5620861ed..d7c984d45 100644
--- a/security/nss/lib/freebl/Makefile.in
+++ b/security/nss/lib/freebl/Makefile.in
@@ -94,9 +94,12 @@ endif
ifeq ($(OS_ARCH),IRIX)
ifeq ($(USE_N32),1)
ASFILES = mpi_mips.s
- ASFLAGS = -O -OPT:Olimit=4000 -dollar -fullwarn -xansi -n32 -mips3
DEFINES += -DMP_ASSEMBLY_MULTIPLY -DMP_ASSEMBLY_SQUARE -DMP_USE_UINT_DIGIT
+ifeq ($(GNU_CC),1)
+ ASFLAGS = -Wp,-P -Wp,-traditional -O -mips3
else
+ ASFLAGS = -O -OPT:Olimit=4000 -dollar -fullwarn -xansi -n32 -mips3
+endif
endif
endif