1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Use the non-asm routines (for now) on the sparc and sparc64 ports.

This commit is contained in:
Steve Price 2000-04-15 20:41:06 +00:00
parent 9273e2696c
commit aa50d936fd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59265
2 changed files with 11 additions and 0 deletions

View File

@ -37,6 +37,10 @@ CFLAGS+= -I${GMPDIR}/mpn/m68k
MPN_SRC_ASM= add_n.S lshift.S rshift.S sub_n.S
.elif ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64"
.PATH: ${GMPDIR}/mpn/generic
MPN_SRC_ASM=
.endif
CFLAGS+= -I${GMPDIR} -I${GMPDIR}/mpn/generic

View File

@ -37,6 +37,13 @@ CFLAGS+= -I${GMPDIR}/mpn/m68k -I${GMPDIR}/mpz -DBERKELEY_MP
MPN_SRC_ASM= add_n.S lshift.S rshift.S sub_n.S
.elif ${MACHINE_ARCH} == "sparc" || ${MACHINE_ARCH} == "sparc64"
.PATH: ${GMPDIR} ${GMPDIR}/mpn ${GMPDIR}/mpn/generic \
${GMPDIR}/mpbsd
CFLAGS+= -I${GMPDIR}/mpz -DBERKELEY_MP
MPN_SRC_ASM=
.endif
CFLAGS+= -I${GMPDIR} -I${GMPDIR}/mpn/generic