Re: [Gc] "include/private/gcconfig.h", line 604: #error: "The collector has not been ported to this machine/OS combination."

Dennis Clarke <[email protected]> Wed, 23 Nov 2016 17:16:02 -0500
Newsgroups gmane.comp.programming.garbage-collection.boehmgc
Message-ID <[email protected]>
At this point I will dig into the core dump during the testsuite and see 
why bufp went well into nowhereland at line 3597 of os_dep.c.

At the moment I see that the bufp starts off at 3554 nicely :

3554:    bufp = GC_proc_buf;


(dbx) print GC_proc_buf 

GC_proc_buf = 0x100157000 ""


seems safe enough.

Then we jump around a bit using the sizeof(some struct) from thereon 
downwards.

Would love to single step through this.

In any case .. I am looking into it.

Dennis