Unload bound library

Hi. I’m using numba and llvmlite for loading an external c-library (rather than ctypes CDLL). I’m wondering, how I can unload a library that has been bound using:

binding.load_library_permanently(libraryPath)

I think I understand the hint that it it is in the name “load_library_permanently”, that it shouldn’t be unloaded, but I haven’t found any other way to load a library with llvmlite. Can you assist?