Subject: Re: A gcc process that gets "stuck"?
To: Lars Nordlund <lars.nordlund@hem.utfors.se>
From: None <ragge@ludd.luth.se>
List: port-alpha
Date: 12/21/2004 08:27:27
> 
> Trying to run a compiler on the machine just fails. Nothing happens. The
> process gets stuck.
> 
> $ cat testa.c
> #include <stdio.h>
> #include <stdlib.h>
> 
> int
> main(void)
> {
>         printf("hello world\n");
>         exit(0);
> }
> 
> $ gcc -o testa testa.c
> 
> Nothing more happens here. The CPU is running 100% chewing on this small
> C file, but never reaches a conclusion.
> 
> $ ktruss gcc -o testa testa.c
>
You must use ktruss -i to follow the trace into childrens after fork.

-- Ragge