Le 19 févr. 09 à 05:34, Robin Cook a écrit :
So could you please run the following and confirm that it hangs?
----------------------------------------
cat >conftestlib.java <<EOF
public class conftestlib {
public static void main (String[] args) {
}
}
EOF
gcj -C -d . conftestlib.java
----------------------------------------
What is gcj on your machine? What does 'gcj --version' give?
Yes, it does hang.
gcj (GCC) 4.3.2
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There
is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
This looks like a serious problem, and I doubt this is something we
can fight :( As you sure your gcj is properly installed? Can a
strace gcj -C -d . conftestlib.java
help understanding what it's waiting for?
Maybe for a start you could try
gcj -C -d . conftestlib.java </dev/null
and see if it still hangs?
Thanks!