[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug cp-tools/39177] trunk revision 144128 - jar: internal error: java.l
From: |
rob1weld at aol dot com |
Subject: |
[Bug cp-tools/39177] trunk revision 144128 - jar: internal error: java.lang.NullPointerException |
Date: |
16 Feb 2009 23:07:14 -0000 |
------- Comment #1 from rob1weld at aol dot com 2009-02-16 23:07 -------
This Bug stems from the setting of a new signal handler in
GC_SysVGetDataStart() and the SIGSEGV is not getting caught.
../gcc_trunk/boehm-gc/os_dep.c :
...
GC_setup_temporary_fault_handler();
if (SETJMP(GC_jmp_buf) == 0) {
/* Try writing to the address. */
*result = *result; /* SIGSEGV */
GC_reset_fault_handler();
} else {
...
A quick workaround is to delete or rename your 'gjar' before
gcc's configury detects it. The gcc scripts will workaround
the absence of 'gjar' during the build.
Rob
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39177