ctypes.util.find_library doesn't always work that well, so it may be nice to allow developers to hard-code a lib's path (at least when getting started). Currently every lib name is run through find_library. Instead, we should bypass this when the lib name uses an absolute path.
ctypes.util.find_library
doesn't always work that well, so it may be nice to allow developers to hard-code a lib's path (at least when getting started). Currently every lib name is run throughfind_library
. Instead, we should bypass this when the lib name uses an absolute path.