`GC_allow_register_threads` missing from `devel/boehm-gc`?

I'm working on some CI for Nim on FreeBSD, but we're currently getting an error relating to the devel/boehm-gc package for some of the unit tests.

Nim tries to make use of the GC_allow_register_threads function, but we get an error message:

could not import: GC_allow_register_threads

I've tried using readelf -Ws /usr/local/lib/libgc.so.1 | grep GC_allow_register_threads to see if the function is exported, and it does seem to be missing. is there something I'm missing here?
 
Back
Top