Skip to content

Missing supporting libraries #11

Open
@akshowhini

Description

@akshowhini

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions