[plt-scheme] OpenBSD build problems
At Thu, 28 Jun 2007 10:34:52 +0800, Matthew Flatt wrote:
> My guess is that the 3m GC isn't working right on OpenBSD. More
> specifically, I'll bet it has to do with the write barrier for
> generational collection.
Actually, if my guess is on the right track, and given that the crash
is a segfault, you might try just changing line 36 of
"plt/src/mzscheme/gc2/sighand.c" from
# define USE_SIGACTON_SIGNAL_KIND SIGBUS
to
# define USE_SIGACTON_SIGNAL_KIND SIGSEGV
Matthew