[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: Makeinfo OK, gcc still no..



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] []