Open
Description
Firstly, thanks for hosting the layer - it worked like a charm. It would be much helpful if the **libgs.so.*9.5 are also made available in a /lib64 folder. The reason for the error is also the same, that the camelot library is trying to find libgs.so.9.52 but couldn't find it.
An easy replication of an error is as follows..
# Any one of the below sections of code should have a value
# sec: 1
from ctypes import *
cdll = LibraryLoader(CDLL)
libgs = cdll.LoadLibrary("libgs.so") # or "/opt/lib64/libgs.so"
print("libgs should not be null -->", libgs)
#sec 2
import ctypes.util
libgs = ctypes.util.find_library("gs")
print("libgs should not be null -->", libgs)
Originally posted by @akshowhini in #4 (comment)
Metadata
Metadata
Assignees
Labels
No labels