[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: Makeinfo OK, gcc still no..
- From: Christian Iseli <chris ludwig-alpha unil ch>
- To: axp-list redhat com
- Subject: Re: Makeinfo OK, gcc still no..
- Date: Fri, 29 Oct 1999 16:30:44 +0200
mholloway@flashmail.com said:
> I believe this was installed during my Red Hat installation. I did a
> custom install and made sure gcc was put on my system.. If I to a
> "gcc" at the shell prompt (from my home dir) I get "gcc: no input
> files" so I know it's there.. Any thoughts on this one?
Create a small hello_world.c C file e.g.:
--
#include <stdio.h>
int main ()
{
printf("Hello world.\n");
}
--
Then do "gcc -v -o hello_world hello_world.c" and see what happens:
- cannot find stdio.h -> you need to install glibc-devel
- other -> ??? we'll see...
Cheers,
Christian
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[]