I was looking at building java on IA64 HP-UX and I found that the java
library calls _Unwind_Backtrace(). Now the unwind interface for C++ is
standardized and does not include this routine, apparently this was
added for java but isn't part of any standard.
The reason this affects me is that on IA64 HP-UX we are currently using
the system libunwind and it does not include this routine. So, to build
java on IA64 HP-UX I have to provide this somehow. I am looking at
several options and would like some opinions.
Create my own _Unwind_Backtrace routine separate from libunwind. This
should be possible using the existing system interface to libunwind,
but where would it live then? Could I put it in the java runtime
library?