FYI...
Best guess is that some kind of change to javac is triggering
this failure, but I'm not convinced anything is 'wrong' with javac,
just a change in the class files created implicitly. Stay tuned...
In the corba repository I did find this problem:
diff -r 80a0f46a6203 make/org/omg/CORBA/Makefile
--- a/make/org/omg/CORBA/Makefile Thu Jul 17 11:28:32 2008 -0700
+++ b/make/org/omg/CORBA/Makefile Fri Aug 01 11:30:41 2008 -0700
@@ -48,7 +48,7 @@ endif
FILES_java = \
$(ORG_OMG_SENDINGCONTEXT_java) \
- $(ORG_OMG_CORBA_2_3_java) \
+ $(org_omg_CORBA_2_3_java) \
$(ORG_OMG_CORBA_java)
#
I'm testing it now but I still don't understand why it fails sometimes
and not others. The 2_3 sources are never explicitly listed to be
compiled so how they got compiled in the past is a puzzle.
I can only make it fail if I do the full (control) build from the
top of the jdk7 forest, so it will take some time to verify the
above change makes any difference.
-kto
Brad Wetmore wrote:
Max, are you pulling from the current JSN gate or something else? I had
no problems with last night's nightlies.
If you're pulling from the master, I expect Tim will integrate tonight
and sync TL with the latest MASTER. I'll pull them down into JSN at
midnight and should have results the next morning.
Brad
Kelly O'Hair wrote:
Humm...
Now I'm seeing this all of a sudden too from a control build.
Did anyone figure this out?
I don't think the corba repository has changed much. :^(
-kto
Kelly O'Hair wrote:
What do you mean "build the whole openjdk"? What directory are you in
when
you do the 'make'?
-kto
Max (Weijun) Wang wrote:
Strange, if I go into corba/make and call gnumake, the generated
classes.jar includes those files. However, they are not there if I
build the whole openjdk.
Max
On Jul 31, 2008, at 1:13 PM, Max (Weijun) Wang wrote:
Hi All
I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside
jdk/make/java/management, complaining
ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does
not exist
import org.omg.CORBA_2_3.portable.InputStream;
^
What's happening here?
I've noticed classes.jar and src.zip inside build/corba/dist/lib.
CORBA_2_3 sources are found in src.zip but classes missing in
classes.jar. Could this be the reason?
Thanks
Max