You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to get Cyclone work on flinux. Cyclone uses garbage collector.
When running cyclone on flinux it errors out with Absurd stack bottom value error.
This issue is similar to this:
Boehm gc reads "/proc/self/stat" and extracts field 28 and uses that for stack scanning (field 28 is the start of the main thread's stack, see http://man7.org/linux/man-pages/man5/proc.5.html).
But flinux does not properly set field 28 in /proc/self/stat
I don't have enough knowledge to fix it myself, however for someone who understands the codebase it probably would be easy.
But also, I am concerned if that would be enough. Maybe Boehm gc messes with the code on low level so it would be hard to get working on flinux?
The text was updated successfully, but these errors were encountered:
I am trying to get Cyclone work on flinux. Cyclone uses garbage collector.
When running cyclone on flinux it errors out with
Absurd stack bottom value
error.This issue is similar to this:
Boehm gc reads "/proc/self/stat" and extracts field 28 and uses that for stack scanning (field 28 is the start of the main thread's stack, see http://man7.org/linux/man-pages/man5/proc.5.html).
But flinux does not properly set field 28 in /proc/self/stat
I don't have enough knowledge to fix it myself, however for someone who understands the codebase it probably would be easy.
But also, I am concerned if that would be enough. Maybe Boehm gc messes with the code on low level so it would be hard to get working on flinux?
The text was updated successfully, but these errors were encountered: