Hi,
after updating from Mac OS X 10.4 (Tiger) to 10.5 (Leopard), my LWJGL Test plugin (see
http://lwjgl.org/forum/index.php/topic,2379.15.html) for Eclipse is not working anymore. This is the error message:
Unhandled event loop exception
Can't start the AWT because Java was started on the first thread. Make sure StartOnFirstThread is not specified in your application's Info.plist or on the command line
The error is caused by
Toolkit.getDefaultToolkit()
which is called in
org.lwjgl.MacOSXSysImplementation
I know -- there is the old SWT/AWT problem under Mac OS X. But: LWJGL isn't really using AWT, is it?
Why is the AWT toolkit loaded? Is it possible to remove that line?
Jens
P.S.: I also wrote a mail to Apple's java developer mailing list, maybe they can solve the problem since the plugin worked with Tiger, so Apple has obviously changed something that broke my code. Besides, the plugin is still working when started from a second Eclipse instance, i.e. a runtime instance in run or debug mode.