summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-05-22 13:38:36 +0000
committerwtc%netscape.com <devnull@localhost>2001-05-22 13:38:36 +0000
commit2995b53c3c9337111020ed9b2277590ade5fdf8e (patch)
treefeb2f7835ef3cb23464255cdb583c69713b8cef2
parent273ea3d2f3023f12a77da9d1e666a3721684e07e (diff)
downloadnss-hg-2995b53c3c9337111020ed9b2277590ade5fdf8e.tar.gz
Bugzilla bug #80809: use the correct assembler flags under gcc on IRIX.
Thanks to John Vandenberg <zeroJ@null.net> for the patch.
-rw-r--r--security/nss/lib/freebl/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/security/nss/lib/freebl/Makefile b/security/nss/lib/freebl/Makefile
index 4fe9f4258..09dd3b329 100644
--- a/security/nss/lib/freebl/Makefile
+++ b/security/nss/lib/freebl/Makefile
@@ -89,7 +89,11 @@ endif
ifeq ($(OS_ARCH),IRIX)
ifeq ($(USE_N32),1)
ASFILES = mpi_mips.s
+ifeq ($(NS_USE_GCC),1)
+ ASFLAGS = -Wp,-P -Wp,-traditional -O -mips3
+else
ASFLAGS = -O -OPT:Olimit=4000 -dollar -fullwarn -xansi -n32 -mips3
+endif
DEFINES += -DMP_ASSEMBLY_MULTIPLY -DMP_ASSEMBLY_SQUARE
DEFINES += -DMP_USE_UINT_DIGIT
else