Re: [newbie] gcc not working

2000-04-07 Thread Anthony Huereca
Looks like you dont' have all the libraries installed. Go to /usr/include and see if stdio.h is there. If it's not, then you'll need to download an RPM of whatever header files you need, like http://rpmfind.net/linux/RPM/mandrake/cooker/cooker/Mandrake/RPMS/glibc-devel-2.1.3-2mdk.i586.html for

Re: [newbie] gcc not working

2000-04-07 Thread John Scott
Right on, Anthony! I just ran into the same type of problem trying to compile a driver for my NIC. I hope the Mandrake folks read your (our) messages. Anthony Huereca wrote: Looks like you dont' have all the libraries installed. Go to /usr/include and see if stdio.h is there. If it's not,

Re: [newbie] gcc not working

1999-09-14 Thread Ty Mixon
My knee jerk reaction would be to give the file explicitly gcc /home/Me/HelloCruelWorld.cpp -- Ty Mixon e-mail: [EMAIL PROTECTED] ICQ:26147713 Original Message On 9/14/99, 1:12:09 PM, [EMAIL PROTECTED] wrote regarding [newbie] gcc not working: Hello, I've just installed 6.0, and

RE: [newbie] gcc not working

1999-09-14 Thread Ken Wilson
If you are still in the directory you compiled it in try running it as follows "./filename" That will run it if you are in the same directory you compiled in. I suspect the problem you are seeing is because the directory you compiled in is not included in your environment's path variable.

Re: [newbie] gcc not working

1999-09-14 Thread DuBose8
I have tried using the ./file method, it gives the same message which is: ld: cannot open crt1.o :no such file or dir ld is an executable file in one of the /bin dirs, but what does it have to with compiling my program and what is crt1.o? Scott