MUD source code (again)

Lastfrost

2001-11-24 10:39:00

Hey...Argh. I finally downloaded Developlement tools today, and when i tried to compile source code for a Smaug Mud (and a Dystopia mud) i got this message:
make: gcc: Command not found
make: *** [act_comm.o] Error 127
I got the error on the act_comm.o file for both mud source codes. What do you think the problem is? You can download the code to look at from "ftp://ftp.game.org/pub/mud/diku/merc/smaug/smaug1.4a.tgz" or the other code at "http://www.daimi.au.dk/~jobo/dystopia/download/dystopia-1.4.tar.gz"
What do you think the problem is?
~Ender

apex

2001-11-25 01:30:00

See http://macosx.forked.net/comp.html regarding "Problem: gcc doesn't work from the command line."

Anonymous

2004-03-31 22:03:00

You should check to see if the command is in interp.c or if it is declared in merc.h as DECLARE_DO_FUN(blah). just my thought, hope it helps.
Later.

Originally posted by Ender:
Hey...Argh. I finally downloaded Developlement tools today, and when i tried to compile source code for a Smaug Mud (and a Dystopia mud) i got this message:
make: gcc: Command not found
make: *** [act_comm.o] Error 127
I got the error on the act_comm.o file for both mud source codes. What do you think the problem is? You can download the code to look at from "ftp://ftp.game.org/pub/mud/diku/merc/smaug/smaug1.4a.tgz" or the other code at "http://www.daimi.au.dk/~jobo/dystopia/download/dystopia-1.4.tar.gz"
What do you think the problem is?
~Ender

Anonymous

2004-04-22 21:56:00

Originally posted by Ender:
Hey...Argh. I finally downloaded Developlement tools today, and when i tried to compile source code for a Smaug Mud (and a Dystopia mud) i got this message:
make: gcc: Command not found
make: *** [act_comm.o] Error 127
I got the error on the act_comm.o file for both mud source codes. What do you think the problem is? You can download the code to look at from "ftp://ftp.game.org/pub/mud/diku/merc/smaug/smaug1.4a.tgz" or the other code at "http://www.daimi.au.dk/~jobo/dystopia/download/dystopia-1.4.tar.gz"
What do you think the problem is?
~Ender


The problem is MacOS X calls the compiler 'cc' and not 'gcc'. Smaug's build system foolishly sets the CC= variable to gcc instead of leaving it alone. Go into Makefile and change CC=gcc to CC=cc and try again.