Bugzilla bug #80809: use the correct assembler flags under gcc on IRIX.

Thanks to John Vandenberg <zeroJ@null.net> for the patch.
This commit is contained in:
wtc%netscape.com 2001-05-22 13:43:47 +00:00
parent 640403e3e4
commit c83d9284ee

View File

@ -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