Marty,
  The problem with early exit from GUI programs is due to a bug in
the JIT compiler. Find your .java_wrapper file and add the following
line:

export JAVA_COMPILER=NONE

(umm, your shell syntax for exported variables may be different.
 the basic idea is to have an environment variable set to disable the
JIT)

Next you'll probably run into the fact that native threads don't seem to
work.
Again this can be fixed in the .java_wrapper file. change the line that
sets the default threads=native to default threads=green.

Tim Daly
[EMAIL PROTECTED]

"Marty E. Geier" wrote:
> 
> I've had the same problem as Jais.  I put a link from my newer libs to
> the old name
> as you suggested.  Jdk 1.2 is working for me, but whenever I launch a
> GUI app, the
> interface pops up briefly (split-second) and then disappears.  No errors
> though, no
> stack dump and no seg fault.  Any suggestions here?
> 
> I'm using Redhat 6.0, with lib6.1-1.
> 
> Thanks,
> 
> Marty
> 
> Previous messages:
> -----------------------------------------------
> jais,
>   it seems that you might have a later version of the libstdc file.
>   look in the /lib directory (or maybe /usr/lib) for the libstdc* files.
> 
>   you probably have one like libstdc++-lib6.1-1.so.2. if so, do
>   ln -s libstdc++-lib6.1-1.so.2 libstdc++-lib6.0-1.so.2
> 
> tim daly
> [EMAIL PROTECTED]
> 
> >
> > Exception in thread "main" java.lang.UnsatisfiedLinkError:
> > /usr/local/java2/jdk1.2/jre/lib/i386/libfontmanager.so:
> > libstdc++-libc6.0-1.so.2: cannot open shared object file: No such file
> 
> > or directory
> 
> ----------------------------------------------------------------------
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to