Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!sdd.hp.com!elroy.jpl.nasa.gov!ncar!gatech!rutgers!rochester!cornell!tclark From: tclark@honir.cs.cornell.edu (Timothy Clark) Newsgroups: comp.sys.isis Subject: compiling ISIS on SUN3s Message-ID: <47209@cornell.UUCP> Date: 17 Oct 90 15:37:16 GMT Sender: nobody@cornell.UUCP Reply-To: tclark@cs.cornell.edu (Timothy Clark) Distribution: comp Organization: Cornell Univ. CS Dept, Ithaca NY Lines: 18 For those of you having problems compiling ISIS on SUN3 machines, receiving the error msg: > cc -DNOSUNLWP -DSUN3 -I../../include -c -O3 ../../util/isis.c > cc: Fatal error in iropt: Segmentation fault (core dumped) The problem is the -O3 optimization level. To correct the problem, edit the SUN3/makefile, changing the following line: From: OPTIMSTD = CC=cc OPTIM="-O3" To: OPTIMSTD = CC=cc OPTIM="-O" This will effectively change the optimization from level 3 to the default level 2, and correct the problem. --Tim