shared-libraries
Linking two shared libraries with some of the same symbols
I link with two different shared librari开发者_如何学编程es. Both libraries define some symbols that share a name but have different implementations. I can\'t make each library use its own implementat[详细]
2023-03-16 18:27 分类:问答Websphere Shared Library
I have a web server which host 3 different applications, they all need one same library called \"bridge2java.jar\". I decided to use shared library to avoid \".dll (bridge2java.dll) already load in an[详细]
2023-03-15 02:34 分类:问答Why are LIB files beasts of such a duplicitous nature?
I\'m trying to understand this LIB file business on Microsoft Windows, and I\'ve just made a discovery that will - I hope - dispel the confusion that hitherto has prevented me from getting a clear gra[详细]
2023-03-14 18:55 分类:问答Java EE Shared Libs?
I\'m having trouble getting a shared library working in a Java EE environment. In particular, the library contains some helpers for common JMS activities. However, as soon as the code enters a librar[详细]
2023-03-14 05:39 分类:问答Cannot Debug Shared Library - Symbols Not Loading Properly
I am currently writing a small library, and I want to check it for leaks (among other things); however, for some reason, gdb is not lo开发者_如何学JAVAading the library symbols. I have read many other[详细]
2023-03-13 10:01 分类:问答Python shared object module naming convention
I have written a Python module in C++ and built it as a shared object library and it worked fine.But while figuring all that out, I noticed (via strace) that Python looks for a few different variation[详细]
2023-03-12 20:51 分类:问答Calling a function in a shared library given its name and signature
I have a little DSL that needs to be able to load shared libraries and run functions that they export. Finally, a solved problem: dlopen, dlsym, LoadLibrary, and GetProcAddress are all you need for cr[详细]
2023-03-12 16:13 分类:问答variable value used by more then one shared library
I am writing an application in C which uses both user defined satically linked library(using -l option) and dynamically linked library that i preload(using ld-preload). Now I have a开发者_JS百科 varia[详细]
2023-03-12 16:12 分类:问答Testing a C++ library with Python
I have a libfoo.so library built from C++ code (compiled with gcc), and I would like to quickly test some of its exported classes (basically, instantiating a class then calling its methods to check th[详细]
2023-03-12 14:15 分类:问答How are variables in shared libraries referenced by loader?
I now understand how dynamic functions are referenced, by procedure linkage table like below: Dump of assembler code for function foo@plt:[详细]
2023-03-12 13:31 分类:问答