Probable cause summary: back_trace is declared at several places depending on IFDEFs but only one place is initializing with NULL
Details:
back_trace was never initialized before beeing used:
back_trace can be initialized at line 287:
#if !defined(back_trace_register)
On hpux 11.11 parisc back_trace isn't declared at that point.Instead it is probably declared in lispbibl.d An...
clisp builds upto ANSI CL, ie no modules yet.
apply these workarounds:
in src/spvw.d
3269 # The argv_* variables now have their final values.
3270 # Analyze the environment variables determining the locale.
3271 # Deal with LC_CTYPE.
+ back_trace = NULL;
3272 init_ctype();
It seems back_trace is initialized to NULL when declared but it has no effect.
Instead it...
Hi,
My ambition is to keep an track of the build procedure on hpux 11.11 parisc, that doesn't work today with clisp.
I hope to annotate this bug ticket with all relevant info as soon as possible.
As an apertif, lets start with a simple gcc problem:
Currently it stops at this:
The compile halted when compiling malloc/gmalloc.c.
The lines 240 and 360 differ at...