sjones @
Aptech .
com (Samuel D. Jones) writes:
> Has anyone compiled PGP on Solaris x86
> using the SunPro compiler?
Try the patch below. Optionally you could use GCC and the GNU
assembler (gas) available from the binutils-2.7.tar.gz
package on ftp.gnu.ai.mit.edu in /pub/gnu.
*** makefile.orig Thu Jul 25 11:41:31 1996
--- makefile Thu Jul 25 11:42:37 1996
***************
*** 113,119 ****
# Assembly-language subroutine dependencies
_80386.o: 80386.S
! $(CPP) $(ASMDEF) 80386.S > _80386.s
$(ASM) -o $@ _80386.s
rm -f _80386.s
--- 113,119 ----
# Assembly-language subroutine dependencies
_80386.o: 80386.S
! $(CPP) $(ASMDEF) 80386.S | grep -v '^# ' > _80386.s
$(ASM) -o $@ _80386.s
rm -f _80386.s
References:
|
|