This question relates to my earlier question; I am specifically asking here for help on how I can get more output rather than expanding on the earlier question. I am trying to compile my Java project form an Ubuntu 10.4 installation on an NTFS file system of my laptop configured to normally start in Win XP.
My Java version is:
OpenJDK Runtime Environment (IcedTea6 1.11.5) (6b24-1.11.5-0ubuntu1~10.04.2)
OpenJDK Client VM (build 20.0-b12, mixed mode, sharing)
The java compiler version is:
javac 1.6.0_24
In the following directory of my Java project:
~/NetBeansProjects/CliqueSpace/trunk/CliqueSpace
I enter the following command to compile my project:
ant -v clean jar
This is the last line of output. It corresponds to the final listed module of my project.
[javac] /home/owen/NetBeansProjects/CliqueSpace/trunk/CliqueSpace/src/cliquespace/core/exception/cliquespace/undisclosed/identifier/UndisclosedIdentifier_FactoryNotGiven.java
The compiler appears to hang after "compiling" this last module of my project library. Hence, I don't think there's a problem with the compilation step. But I don't know for sure.
Question: How do I find out what is going on? Is there any debugging information that javac will give me? Is it something to do with the next step in the build script?
I don't know what is going on, and as I have never seen this problem before, I don't know what to do to find out.
I'm stumped. Any constructive suggestions and hints are most welcome.
Thanks.
Edit: I feel confident that the hang is happening in the javac compiler. The compiler shows all syntax errors after the line shown above is displayed; I now understand that the line above is output by ant in verbose mode as a note to the developer before the script starts the compiler. Although I still haven't yet tracked down the source of the problem causing the hang, I think I'm on to a strong lead... I may disclose something in my earlier question on Java generics discussing the solution if my lead turns out.