Build freebl on Solaris x86 with either gcc or Forte'. Not yet using

x86 assembler sources though.  That's TBD.   Bug 73115.
This commit is contained in:
nelsonb%netscape.com 2001-04-27 04:17:59 +00:00
Родитель 92ba6159a6
Коммит a87ed3e7fe
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -185,6 +185,20 @@ else
endif
endif
endif
else
# Solaris x86
DEFINES += -DMP_USE_UINT_DIGIT
ifdef NS_USE_GCC
LD = gcc
AS = as
ASFLAGS =
DSO_LDOPTS += -shared -Wl,-B,symbolic,-z,defs,-z,now,-z,text,-M,mapfile.Solaris
# ASFILES = mpi_x86.s
# DEFINES += -DMP_ASSEMBLY_MULTIPLY -DMP_ASSEMBLY_SQUARE -DMP_ASSEMBLY_DIV_2DX1D
else
MKSHLIB += -B symbolic -z defs -z now -z text -M mapfile.Solaris
endif
endif
endif