1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

bdwgc 8.2.4 has sp_corrector

> Support client-defined stack pointer adjustment before thread stack push

-- https://github.com/ivmai/bdwgc/releases/tag/v8.2.4

This fixes an inaccuracy in cc6f315252,
in the update to Nixpkgs 24.05 https://github.com/NixOS/nix/pull/10835

After this fixup, the build log won't ask for an upgrade, and we'll be
able to collect when a coroutine exists, e.g. during filterSource.
This commit is contained in:
Robert Hensing 2024-06-10 12:37:44 +02:00
parent 0a09597790
commit f91f34aa65

View file

@ -354,7 +354,7 @@ void initGC()
// TODO: Remove __APPLE__ condition. // TODO: Remove __APPLE__ condition.
// Comment suggests an implementation that works on darwin and windows // Comment suggests an implementation that works on darwin and windows
// https://github.com/ivmai/bdwgc/issues/362#issuecomment-1936672196 // https://github.com/ivmai/bdwgc/issues/362#issuecomment-1936672196
#if GC_VERSION_MAJOR >= 8 && GC_VERSION_MINOR >= 4 && !defined(__APPLE__) #if GC_VERSION_MAJOR >= 8 && GC_VERSION_MINOR >= 2 && GC_VERSION_MICRO >= 4 && !defined(__APPLE__)
GC_set_sp_corrector(&fixupBoehmStackPointer); GC_set_sp_corrector(&fixupBoehmStackPointer);
if (!GC_get_sp_corrector()) { if (!GC_get_sp_corrector()) {
@ -365,7 +365,7 @@ void initGC()
}; };
} }
#else #else
#warning "BoehmGC version does not support GC while coroutine exists. GC will be disabled inside coroutines. Consider updating bdw-gc to 8.4 or later." #warning "BoehmGC version does not support GC while coroutine exists. GC will be disabled inside coroutines. Consider updating bdw-gc to 8.2.4 or later."
#endif #endif