-
Bug
-
Resolution: Fixed
-
P3
-
8
-
Win64(144GB, 2 core)
-
b104
-
x86
-
windows_7
- Looks like missing autogenerated corba classes in corba/gensrc , the idl should have generated this. For Ex: NameComponent.java . In the debug log within corba build phase you can see a line
find: ‘/cy/cygdrive/e/work/jdk8/corba/src/share/classes’: No such file or directory
This shows there is some non printable characters in the path to find command. A little deeper investigation revealed that a call to macro at corba/makefiles/BuildCorba.gmk:147 goes to macro "SetupIdlCompilation" defined in common/makefiles/IdlCompilation.gmk . The abspath function was mangling the path. Commenting out line 87 and 88 (to remove abspath's effect on the paths) enabled the build to succeed .
- Please find attached both the failed and success logs.
find: ‘/cy/cygdrive/e/work/jdk8/corba/src/share/classes’: No such file or directory
This shows there is some non printable characters in the path to find command. A little deeper investigation revealed that a call to macro at corba/makefiles/BuildCorba.gmk:147 goes to macro "SetupIdlCompilation" defined in common/makefiles/IdlCompilation.gmk . The abspath function was mangling the path. Commenting out line 87 and 88 (to remove abspath's effect on the paths) enabled the build to succeed .
- Please find attached both the failed and success logs.