On Friday 23 January 2009 10:49:44 am Mike . wrote:
> I wonder if your gcc install is broken. Can you system compile other
> programs?
Well, it might not be a very good test, but I am able to compile and run a
simple "hello world" C program. See attached script session for example.
Can you think of a more thorough test of my gcc that doesn't involve a whole
lot of dependency hunting?
--
Jason Voegele
If opportunity came disguised as temptation, one knock would be enough.
Script started on Fri 23 Jan 2009 02:10:28 PM EST
]0;jvoeg...@wintermute: /tmp[01;32mjvoeg...@wintermute[00m:[01;34m/tmp[00m
$ cat hello.c
#include <stdio.h>
int main(int argc, char **argv)
{
printf("Hello, world!\n");
return 0;
}
]0;jvoeg...@wintermute: /tmp[01;32mjvoeg...@wintermute[00m:[01;34m/tmp[00m
$ gcc -o hello hello.c
]0;jvoeg...@wintermute: /tmp[01;32mjvoeg...@wintermute[00m:[01;34m/tmp[00m
$ ./hello
Hello, world!
]0;jvoeg...@wintermute: /tmp[01;32mjvoeg...@wintermute[00m:[01;34m/tmp[00m
$ exit
Script done on Fri 23 Jan 2009 02:10:51 PM EST