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: /tmpjvoeg...@wintermute:/tmp
$ cat hello.c 
#include <stdio.h>

int main(int argc, char **argv)
{
    printf("Hello, world!\n");
    return 0;
}

]0;jvoeg...@wintermute: /tmpjvoeg...@wintermute:/tmp
$ gcc -o hello hello.c 
]0;jvoeg...@wintermute: /tmpjvoeg...@wintermute:/tmp
$ ./hello 
Hello, world!
]0;jvoeg...@wintermute: /tmpjvoeg...@wintermute:/tmp
$ exit

Script done on Fri 23 Jan 2009 02:10:51 PM EST

Reply via email to