Koozali.org: home of the SME Server

Legacy Forums => Experienced User Forum => Topic started by: Ron on September 09, 2003, 04:37:55 AM

Title: I need Gcc working...
Post by: Ron on September 09, 2003, 04:37:55 AM
Greetings all,

I have a Mitel SME 5.5 server up and running great. I am using it to host a personal website and want to add a MUD as well. It is also the Firewall for my LAN.

I need to get Gcc going on the server so I can compile the mud software.

Anyone know how???

Thanks in advance.
Ron
Title: Re: I need Gcc working...
Post by: Tim Jones on September 09, 2003, 04:44:40 AM
I'd start by trying to compile something and see which bits you're missing.  My 5.6 system has a functional gcc environment installed straight of off the CD.

Try logging in a root and exec'ing:

    gcc --version

Tim
Title: Re: I need Gcc working...
Post by: Ron on September 09, 2003, 04:46:15 AM
It is not installed. gcc --version returns nothing.

Again, Thanks
RonTim Jones wrote:
>
> I'd start by trying to compile something and see which bits
> you're missing.  My 5.6 system has a functional gcc
> environment installed straight of off the CD.
>
> Try logging in a root and exec'ing:
>
>     gcc --version
>
> Tim
Title: Re: I need Gcc working...
Post by: Chris Parker on September 09, 2003, 06:09:11 AM
Have a look here

http://wiki.contribs.org/index.php?module=article&view=10&MMN_position=33:33
Title: Re: I need Gcc working...
Post by: Chris Parker on September 09, 2003, 06:10:12 AM
it is under dmay and then mitel
Title: Re: I need Gcc working...
Post by: Ron on September 09, 2003, 09:07:51 AM
Ok, I got it working. Now, I am trying to compile the Mud. It is not working. Below, you will see the error.

bash: ./configure: bad interpreter: Permission denied

What the heck???

I am wondering if it is something to do with CircleMud.

Thanks again
Ron
Title: Re: I need Gcc working...
Post by: Ron on September 09, 2003, 09:10:33 AM
Ok. in the CircleMud instructions, it says to use: ./configure.

This does not work. However, sh configure does.

Thanks to all who took the time to read and respond to this issue.

Ron
Title: Re: I need Gcc working...
Post by: Guck Puppy on September 09, 2003, 11:03:16 AM
Ron wrote:
> Ok. in the CircleMud instructions, it says to use: ./configure.
> This does not work. However, sh configure does.

./configure would most likely have worked - if the file had the 'execute' bit set via the :

chmod u+x configure

command.

G