Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
50k views

ld cannot find an existing library

I am attempting to link an application with g++ on this Debian lenny system. ld is complaining it cannot find specified libraries. The specific example here is ImageMagick, but I am having similar ...
5
votes
3answers
198 views

How does linker know which symbols should be resolved at runtime?

How does linker know which symbols should be resolved at runtime? Particularly I'm interested what information shared object files carry that instruct linker to resolve symbols at runtime. How does ...
3
votes
3answers
570 views

python: sharing huge dictionaries using multiprocessing

I'm processing very large amounts of data, stored in a dictionary, using multiprocessing. Basically all I'm doing is loading some signatures, stored in a dictionary, building a shared dict object out ...
2
votes
3answers
65 views

Loading .so Files From Memory

I've seen this for Windows' DLL files, being loaded from a memory buffer, but I cant find it anywhere for Linux, and "ld" source code is the most complex code I've ever seen. So: Is there any example ...
2
votes
1answer
302 views

shared object can't find symbols in main binary, C++

I'm experimenting with making a kind of plugin architecture for a program I wrote, and at my first attempt I'm having a problem. Is it possible to access symbols from the main executable from within ...
2
votes
2answers
548 views

Program can't load after setting the setuid bit on

Consider this scenario in which an executable A.bin uses libY.so and libZ.so. A.c, Y.c and Z.c are all written in C. Z.c and Y.c are compiled into respective .so files. This is the directory ...
2
votes
1answer
635 views

Exceptions on Linux from a shared object (.so)

I have a test program called ftest. It loads .so files that contain tests and runs the tests that it finds in there. One of these tests loads and runs a .so that contains a Postgres database driver ...
1
vote
1answer
28 views

understading the flash/flex shared objects and hashing technique

I was trying to observe how some of the top browser game makers are implementing the asset management and also study their animation techniques. So I was trying to crack my browsers cache and ...
1
vote
0answers
87 views

Is there a console window open and am I talking to it? C++ /C#, Windows and Linux

I've been developing an embedded C++ application as a DLL/SO ("C" externed) that runs on Linux (Ubuntu 11.04) and Windows(XP). As such, I have no idea if my caller application is running GUI, console ...
1
vote
1answer
151 views

GCC linking to a shared object's linker name

Suppose I have /usr/lib/libsomething.so.1.so on machine A and /usr/lib/libsomething.so.2.so on machine B. On both machines have /usr/lib/libsomething.so symlinking to their respective libs. If I link ...
1
vote
4answers
133 views

missing symbols that should be there

I'm stumped. Here is the output of ld. /usr/lib/libvisual-0.6/actor/actor_avs_superscope.so: undefined reference to `visual_mem_free' /usr/lib/libvisual-0.6/actor/actor_avs_superscope.so: undefined ...
1
vote
3answers
836 views

Remote Shared Objects: Which is better, one array SO or multiple object SOs?

I'm building a multiplayer game using Flash/Flex for the client and FluorineFX (just like FCS/FMS except it is written in .NET) on the server-side. My questions are regarding the use and performance ...
1
vote
3answers
3k views

How do I load a shared object in C++?

I have a shared object (a so - the Linux equivalent of a Windows dll) that I'd like to import and use with my test code. I'm sure it's not this simple ;) but this is the sort of thing I'd like to ...
1
vote
7answers
471 views

Portable shared objects?

Is it possible to use shared object files in a portable way like DLLs in Windows?? I'm wondering if there is a way I could provide a compiled library, ready to use, for Linux. As the same way you can ...
1
vote
2answers
351 views

How to use pkglib_LTLIBRARIES = test.la to only build *.so

I'm using autotools to build a shared object. Using pkglib_LTLIBRARIES in my Makefile.am causes a libtest.la AND libtest.so to be built. I only want it to build/install libtest.so Is this ...
0
votes
0answers
45 views

Problem in storing and retrieving Shared objects in Red5

My problem is that i want to store some shared objects that i use when all clients leaves the room so i put in my code: public void roomStop(IScope room) { remoteSO = ...
0
votes
1answer
103 views

Flash Shared Objects Storage Location Changing Occasionally

When running a flash application that I run locally ie I get to it from a browser but with a file path file:///C:/Projects/test/bin-debug/Main.html# Now, most of the time the shared objects are ...
0
votes
2answers
228 views

Why are nonstatic global variables defined in shared objects referenced using GOT?

I mean nonstatic global variables that are defined in the module, not externally. Why does it have to be referenced through GOT? Why no use relative address?(since the distance between the global ...
0
votes
1answer
1k views

Cannot Open Shared Object cygmpfr-1.dll

I'm testing CeGCC, that is a gcc built to cross-compile applications to Windows CE devices. As everyone do to test compilers, I've done a Hello World program: #include <stdio.h> int main() { ...
0
votes
5answers
1k views

How to create make .so files from code written in C or C++ that are usable from Python

Looking at Python modules and at code in the "lib-dnyload" directory in the Python framework, I noticed whenever code is creating some kind of GUI or graphic it imports a non-Python file with a .so ...
0
votes
3answers
1k views

Error on dlopen: St9bad_alloc

I have some c++ code I'm using for testing in which the first line is a call to dlopen in an attempt to load my shared object. Upon hitting this line I get the following error: Terminate called after ...