dlopen
C shared library question
Background: I\'m trying to develop a simple game similar to Zelda (NES) in C as a way to learn C.I\'ve come to the conclusion that having all of the game data in a single file is not ideal.So what I\[详细]
2023-01-17 09:07 分类:问答Debugging a crash when a library is opened via dlopen on OSX
I have a problem with a C++ application I\'ve developed which uses dlopen to load user-developed libraries. The application has been used by a variety of people on a variety of linux distros and versi[详细]
2023-01-10 14:10 分类:问答Dynamic loading of shared objects using dlopen()
I\'m working on a pl开发者_运维百科ain X11 app. By default, my app only requires libX11.so and the standard gcc C and math libs.[详细]
2022-12-30 08:15 分类:问答python c extension, problems with dlopen on mac os
I\'ve taken a library that is distributed as a binary lib (.a) and header, written some c++ code against it, and want to wrap the results up in a python module.[详细]
2022-12-30 01:37 分类:问答On linux, what can cause dlopen to emit SIGFPE?
I have a library of dubious origins which is identified by file as a 32 bit executable.However, w开发者_如何学运维hen I try to dlopen it on a 32 bit CentOS 4.4 machine, dlopen terminates with SIGFPE.S[详细]
2022-12-27 17:54 分类:问答Static Class Variables in Dynamic Library and Main Program [duplicate]
This question already has an answer here: Main Program and Shared Library initializes same static variable in __static_initialization_and_destruction_0[详细]
2022-12-26 07:45 分类:问答dynamic_cast fails when used with dlopen/dlsym
Intro Let me apologise upfront for the long question. It is as short as I could make it, which is, unfortunately, not very short.[详细]
2022-12-21 17:33 分类:问答Finding dylib version using dlopen
Is there a way to find the version of a dylib using its path? I am looking for something that accepts the same arguments as dlopen. I have looked at NSVersionOfRun开发者_如何转开发TimeLibrary, but fro[详细]
2022-12-19 22:55 分类:问答library path when dynamically loaded?
How can I get the path of the shared library from within the library itself? In other words, let\'s say that library X is loaded using dlopen(), how can I get access to the path that was used to load[详细]
2022-12-10 03:37 分类:问答