27 Jun
2014
27 Jun
'14
5:38 p.m.
The Java source was being built and included in rt.jar, but it would not run because jdk/src/macosx/native/apple/launcher/JavaAppLauncher.m (implementing the two native methods) was not being built so it would have died with an UnsatisfiedLinkError. The Xcode project is not referenced anywhere in any makefile I looked at.
I found JavaAppLauncher.o in $BUILD_OUTPUTDIR/jdk/libosx directory (see the symbols below).
Ah, ok. It wasn't explicitly listed in the makefiles so I made an assumption. In any case, removing it causes no build or runtime failures that I can tell. -DrD-