I got it compiled with gcc-2.96 - all it needed was a few includes and some other things. Here's a full list of what I had to do: In source/server: SC_CoreAudio.cpp:31: added line #include <algorithm> In source/lang/langPrimSource: PyrFilePrim.cpp:31: added line #include <stdio.h> PyrUnixPrim.cpp:31: added line #include <stdio.h> In source/lang/langSource: cmdLineFuncs.cpp:27: added line #include <stdio.h> DumpParseNode.cpp:27: added line #include <stdio.h> DumpParseNode.cpp:631: \p means new paragraph? changed it to \n\t GC.cpp:26: added line #include <stdio.h> PyrLexer.cpp:21: changed line to #include <stdio.h> PyrParseNode.cpp:21: added line #include <stdio.h> PyrSignal.cpp:34: added line #define _GNU_SOURCE (to get log2 function) PyrSignalPrim.cpp:21: added line #include <stdio.h> PyrSymbolTable.cpp:24: added line #include <stdio.h>
I haven't really tested it - all I did was start the server, which was fine. Now I need to learn how to use it! Ian On Fri, 18 Oct 2002, Steve Harris wrote: > On Thu, Oct 17, 2002 at 12:02:34 -0400, Dave Phillips wrote: > > Steve Harris wrote: > > > > > I'm trying to build it on gcc2.96, I got some random libtool error, which I > > > made go away with ./ltconfig ltmain.sh. Its still not working though. > > > > Steve, do let us know if you succeed. I have the same issue with the > > compiler, so if you can get it built with 2.96 that would be good news > > for me too. > > Sorry, no, I gave up. I will give it a go on my gcc3 machine over the > weekend though. If it works I could give you a static binary or > something. > > - Steve >
