The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
10 views

Hook functions while the application is running on linux

I want to hook functions in a way similar to Windows madCodeHook library, which goes handles all the complicate details of patching the assembly in memory and reroute a function call to your code. Is ...
0
votes
1answer
19 views

create dynamic link from Mysql table

Im trying to create dynamic links from some post inside a database table, but i cant figure out how to create the link, when the user is already logged in. I think something like this. <?php ...
0
votes
0answers
11 views

Unloading a group of DLLs that link to each other at compile time

I have a DLL (plugin) that dynamically loads another DLL (Python) that dynamically loads even more DLLs (extensions). These extensions are linked back to Python at compile/load time. When I examine ...
0
votes
2answers
19 views

can`t find symbol “dlopen” in libc.so

I can`t find symbol "dlopen" in libc.so There is only symbol "_dlfcn_hooks" in libc.so,but how can ld find "dlopen"? What is the relationship between "dlopen" and "_dlfcn_hooks"?
0
votes
3answers
31 views

Is it possible to load a library before linking based on iOS version?

I have an application which is supposed to use google maps and mapkit framework. Now, google maps are only supported on iOS version 5.1 and further whereas Mapkit framework is supported on lower ...
0
votes
0answers
11 views

Trying to optionally link bundled framework in Xcode: Dyld error

I'm distributing an app to OS X 10.6+ which includes a OS X 10.7+ only library (as a subproject). Basically I am writing an app to be distributed through the app store so it runs on 10.6.6+ but it has ...
0
votes
1answer
37 views

#including <iostream> breaks linkage of shared object

I have following code: #include <iostream> extern "C" { void foo() { std::cout << "Wow, It's working!" << std::endl; } } Without inclusion of iostream and ...
0
votes
2answers
24 views

Does dynamic libraries link other libraries for you?

I noticed how you don't have to link opengl32.lib by yourself when you use libraries such as SFML and I'm really wonder how that could be since I have to link opengl32 in my projects that are using my ...
0
votes
0answers
49 views

is there a way to clone a run-time program to another server

Suppose I'm running a small program on the server. for example, a random number generator and sending the result to a client every second. I know that my server is about to be turned off. Is there a ...
1
vote
2answers
146 views

How to link host code with a static CUDA library after separable compilation?

Alright, I have a really troubling CUDA 5.0 question about how to link things properly. I'd be really grateful for any assistance! Using the separable compilation features of CUDA 5.0, I generated a ...
0
votes
0answers
17 views

why is procedure entry point either found or not, depending on DLL-file location?

i've stuck up at some weird behaviour. i'd compiled Poppler with qt4 for use under windows and decided too make some tests. so what i did: updated PATH environment variable to add search paths for ...
0
votes
1answer
9 views

Changing the path to a dynamic library in an executable

I'm building my program with clang and its using an external library. I've been developing for a while with the binaries they provided (/usr/lib/libary.so), but I now want to move over to a more ...
1
vote
1answer
50 views

Using LD_PRELOAD to overload call to a C function of a shared library

I'm following this answer to override a call to a C function of a C library. I think I did everything correctly, but it doesn't work: I want to override the "DibOpen"-function. This is my code of ...
0
votes
1answer
55 views

(Android)How to build a native c helloworld with DynamicLinkLibrary?

I want to make a native c program with a dynamic link library, so I put these files in Android/development/hello/: hello.c, myprint.h,myprint.c, the main() is in hello.c, and the Android.mk is: ...
0
votes
0answers
18 views

how can a VC++ dll that requires CLR support be compiled in such a way that it does not depend on msvcr80.dll?

This application works fine on the development machine, but on at least two of the deployment machines, some parts of the application suddenly stopped working. The users are wondering why the ...
-1
votes
0answers
28 views

What is the best mode of linking for Windows system libraries?

I know that there are 3 types of library linking: Static linking, where the relevant pieces of library code get directly copied into the final executable file, and possibly even further optimized. ...
1
vote
1answer
38 views

How to reuse static library code which is already linked into a DLL with another C++ application in visual studio 2010?

I'm working on a C++ solution in Visual Studio 2010. I've a DLL file which is using some standard C++ library functions (such as string or file functions). For some portability reasons I have to ...
0
votes
1answer
46 views

Cant use shared libraries in Qt project

I created a C++ library project in Qt creator. After building the project I have the libMylib.so, .so.1, .so.1.0, .so.1.0.0, Makefile and mylib.o files. I added the library headers to my other project ...
1
vote
1answer
64 views

CMake Build Mac App

Our company uses CMake currently to build our executables for Windows. I'm working on making our application work on Mac. So far the application builds fine on the Mac. However, when I try to open the ...
0
votes
0answers
35 views

Dynamic linking failing on linux/powerpc

I have a Xilinx FPGA running a soft processor (PowerPC). I recently cross compiled Boost libraries for PowerPC and wanted to test it. So I used one of the sample programs and tried to cross compile it ...
1
vote
1answer
49 views

create position independent object file from LLVM bit code

I have a llvm module that i've dumped as bitcode file with llvm::WriteBitcodeToFile. I want to turn this bitcode file into an native dynamically loadable library that contains the functions in the ...
1
vote
0answers
40 views

“Transitive” dynamic link in c++

Let's say I have a dynamic lib a.so. Then I'm building b.so against a.so only if a.so is present on the machine. Then I'm building executable c against b.so. I was hoping to forget everything about ...
0
votes
2answers
49 views

How to check if dll generated is statically or dynamically linked?

Following is my linking command: Running Mkbootstrap for XML::SAX::ExpatXS () C:\Perl\bin\perl.exe -MExtUtils::Command -e chmod -- 644 ExpatXS.bs link ...
5
votes
1answer
122 views

Static and Shared Linking with MingW

I want to start with a simple linking usage to explain my problem. Lets assume that there is a library z which could be compiled to shared library libz.dll(D:/libs/z/shared/libz.dll) or to static ...
3
votes
2answers
85 views

Dynamic linking, memory usage and concurrency

When an executable links with a static library, the executable contains only the necessary library parts, that are used in the code, right? But I'm missing the part with - how the shared objects (the ...
1
vote
1answer
89 views

static variable destructor invoked before library destructor

consider the following code for a dynamic loaded library built with g++-4.7 on linux, -fPIC and linked with -rdynamic option: struct Wrapper { libraryUnregisterCbMap_t instance; ...
-1
votes
1answer
104 views

unresolved external symbol even though i think i am linking correctly (MSVC)

i have a project that is using SDL as an external library. The project uses functions such as _SDL_WM_SetCaption, _SDL_FillRect or _SDL_MapRGBA. I have told the linker to include the two libraries ...
1
vote
1answer
97 views

Setting LD_LIBRARY_PATH environment variable for loading a shared library at runtime (g++)

I'm having two problems related to the same issue: I have a shared object saved in `pwd`/lib and while the executable that uses it compiles successfully (by using -l and -L switches), at runtime, ...
0
votes
2answers
72 views

Dynamic Previous page link in PHP

I want to create a "Previous Entries" link in PHP. This is not a simple entries list where you fetch a fixed amount of rows from MySQL database. The catch here is: The row entries may vary each time ...
2
votes
1answer
60 views

Strange symbols while linking shared library g++

I have a file with the void initGui() function in it. It does stuff. I also have a .so shared library made with that file. The problem is, when I try to launch a dlsym(..., "initGui"), dlerror() ...
1
vote
1answer
49 views

Best way to deal with installing dependencies?

I have a library that I distribute to my customers. I'm exploring the idea of leaving my 3rd party dependencies as dynamically linked dependencies. In this case, deployment for my customers becomes ...
0
votes
1answer
49 views

Make local c library function accessable globally

I'm using a C library called GLC to record my OpenGL buffer programmatically. GLC listens to key presses, which is not really a nice solution to trigger programmatically. Therefore I want to execute ...
0
votes
2answers
101 views

Unresolved Externals in C++: Visual C++ mangles method signature differently from mangled method in dll

I'm using Visual Studio 2012, managed C++, to make a bridge between a third party SDK and our system which is written in C#. I have succesfully wrapped and consumed several functions from said SDK. ...
1
vote
1answer
42 views

C++ dynamic linking on dependencies could cause conflicts?

In my following scenario: libA.so library links libCommon.so libB.so library also links libCommon.so even though both libraries link the same libCommon.so, they setup different configuration of ...
0
votes
1answer
106 views

Compiling a CMAKE project against libraries in a non standard location

I have two projects using cmake. The first is a shared library. It compiles and installs fine. Currently, it is still necessary to build 'debug' releases of it. So presently it is installed under ...
3
votes
1answer
64 views

Java Attach API: UnsatisfiedLinkError

When using the Java Attach API, I'm getting the following link error on Linux (tried it on different machines) only: Exception in thread "main" java.lang.UnsatisfiedLinkError: ...
2
votes
1answer
68 views

Can a dynamic library reference Objective-C objects and still be unloaded?

I know that, at least on OS X, due to the way classes are loaded by Apple's Objective-C runtime it is not possible to dynamically unload a dynamic library that contains the implementations of a loaded ...
0
votes
0answers
86 views

How to link dynamic library in XCode 4.2 application project

I have a XCode 4.2 Application(Mac not iOS) project which is using a dylib(libsample.dylib). In that dylib I am loading a jar file(gui_mac_test.jar) by creating JVM. Every thing is fine (linking and ...
2
votes
1answer
79 views

C++ name mangling in a so

Here's what i did: I changed a .h file from SomeObj* getCacheObj( int i = 0 ); to SomeObj* getCacheObj( int i ); SomeObj* getCacheObj(); I recompiled the code (no problems), the changes went ...
3
votes
1answer
1k views

Running ffmpeg as library in android

I've got a simple task to do. I need to merge set of pictures into a video using ffmpeg working in android environment. After over a week fighting with different tutorials and examples explaining ...
1
vote
1answer
54 views

how can i tell which dylibs are loaded when debugging in Xcode?

I'm having some trouble with a particular library and I'm trying to test if an older version will fix my issue. The library is dynamically linked using dylib files stored near the .app file. These ...
0
votes
0answers
28 views

linking .so files crash after dlsym

I am having an libA.so and i want to use a function in that dynamic library. I am loading the so using DLOPEN program_handle = dlopen(program_so, RTLD_NOW); it does not give any error i want to ...
0
votes
1answer
24 views

shared linking against libB.so, libB.so.3, or libB.so.3.0?

Suppose I would like to create a library A that links against another (system) library B of which the following files are installed: $ ll /usr/lib/libB* libB.so -> libB.so.3 libB.so.3 -> ...
2
votes
3answers
117 views

Function interposition only working for malloc not free

I've come across a small problem while monitoring malloc and free trough the use of function interposition. When performing the function interposition for just malloc, it works as exepcted. However, ...
0
votes
1answer
23 views

Do permanent linking to other shared libraries

currently I'm creating a shared library "libmylib.so" using libtool with statements like this: libtool --mode=compile g++ -Wall -fPIC -shared $(CFLAGS) $(LFLAGS) $(LSTATIC) libtool --mode=link g++ ...
2
votes
1answer
67 views

Build dll and link to it?

I'm on codeblocks 10.05 mingw on XP SP3 and I basically have the dll and the lib file built following the mingw site on creating a dll and linking to it. The problem I'm having is the second part ...
0
votes
1answer
25 views

LD_LIBRARY_PATH changed between linking and running

Say we have 2 libraries (A and B) with the same SONAME and interfaces. The developers linked against A when compiling, but the users set $LD_LIBRARY_PATH before running. Everything is quite normal, ...
0
votes
0answers
17 views

Linking/build vernacular/jargon - Dynamic linking methods

I'm familiar with general program memory layout (ie: text segment, data segment, heap, stack, etc), and am trying to find something similar to the description and diagrams here: ...
10
votes
1answer
768 views

Can I trick libc (GLIBC_2.13) into loading a symbol it doesn't have (from GLIBC_2.15)?

In my attempt to get "Steam for Linux" working on Debian, I've run into an issue. libcef (Chromium Embedded Framework) works fine with GLIBC_2.13 (which eglibc on Debian testing can provide), but ...
1
vote
0answers
50 views

eclipse CDT: searching /usr/lib although not in lib search path

I am trying to run a bit of pcl code (from their website). I am currently, on ubuntu, using boost 1_51 (that I built) and in my Eclipse C++ Build->Settings I have ...

1 2 3 4 5 9