From a60e33bc172ecd1eb3c11a1271f5f68e28a570e4 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 26 Jul 2020 20:31:04 -0400 Subject: [PATCH] Document options required for gcc and Developer Studio 12.6 C compilers set default to "cc" (Studio C compiler) for now. modified: bin/makefile-sunos5.sparc-x --- bin/makefile-sunos5.sparc-x | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/makefile-sunos5.sparc-x b/bin/makefile-sunos5.sparc-x index a6f55d0..84eb142 100755 --- a/bin/makefile-sunos5.sparc-x +++ b/bin/makefile-sunos5.sparc-x @@ -17,7 +17,12 @@ #* */ #************************************************************************/ -CC = gcc -std=gnu89 -funsigned-char +# Setup for using gcc +# CC = gcc -std=gnu89 -funsigned-char +# Setup for using Solaris Developer Studio 12.6 cc +# CC = cc -m32 -funsigned-char + +CC = cc -m32 -funsigned-char -O2 XFILES = $(OBJECTDIR)xmkicon.o \ $(OBJECTDIR)xbbt.o \