From: Bodo Möller Date: Thu, 13 May 1999 15:02:49 +0000 (+0000) Subject: For solaris-usparc configurations, avoid problems with GNU as, which X-Git-Tag: OpenSSL_0_9_3beta1~87 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0981259adab3fa083bff0838fb64bcf68f687e1b;p=oweals%2Fopenssl.git For solaris-usparc configurations, avoid problems with GNU as, which cannot handle all opcodes we need. --- diff --git a/crypto/bn/Makefile.ssl b/crypto/bn/Makefile.ssl index d5071b9f47..f2e5fac405 100644 --- a/crypto/bn/Makefile.ssl +++ b/crypto/bn/Makefile.ssl @@ -104,7 +104,9 @@ asm/sparcv8plus.o: asm/sparcv8plus.S $(CC) -xarch=v8plus -c asm/sparcv8plus.S -o asm/sparcv8plus.o asm/sparcv8plus-gcc.o: asm/sparcv8plus.S - gcc -E asm/sparcv8plus.S | as -xarch=v8plus /dev/fd/0 -o asm/sparcv8plus-gcc.o + gcc -E asm/sparcv8plus.S | /usr/ccs/bin/as -xarch=v8plus /dev/fd/0 -o asm/sparcv8plus-gcc.o + # GNU as cannot handle that file, so we circumvent PATH and + # always use /usr/ccs/bin/as. # MIPS 64 bit assember asm/mips3.o: asm/mips3.s