Tagged Questions

6
votes
1answer
112 views

What’s the difference between the -symbolic and -shared GCC flags?

From the documentation's description, they seem to do the same thing except that "not all systems" support shared and "only some systems" support symbolic (it's unclear if these ar …
0
votes
2answers
24 views

How do I use MacPorts to downgrade a dynamic library?

My py-mysql is farking because I've upgraded MySQL which replaced libmysqlclient_r.15.dylib with libmysqlclient_r.16.dylib. How do I find and get back the older version? EDIT: I f …
0
votes
2answers
41 views

How to use a C++ module from a Mono app

I'm trying to run my C#/C++ app on Linux after developing it on Windows. A small part of it, FooLib, is written in C++ which is pinvoked from C# for performance. FooLib uses no sy …
0
votes
2answers
18 views

How does libtool decide to build a shared library or not?

How does libtool decide to build a shared library or not? Chenz
1
vote
2answers
21 views

How to I find the filename of a library via the library name?

How to I find the filename of a library via the library name? In otherwords, when I use "-lc", I know it is /lib/libc.so.6 (or something similar.) I want to be able to type some c …
0
votes
2answers
71 views

How can I find out what makes my application mix the statically and dynamically linked CRT

Sorry for the long post that follows. I know that it is not a good idea to mix the statically linked and dynamically linked C and C++ runtimes supplied by Microsoft. Our applicati …
0
votes
1answer
55 views

How can I find which ELF dependency is not fulfill?

I've built a test ELF program using the LSB SDK (note that my question is not specific to LSB): $ /opt/lsb/bin/lsbcc tst.c $ ls -l a.out -rwxr-xr-x 1 math math 10791 2009-10-13 2 …
0
votes
1answer
25 views

Google perftool cannot read file “libprofiler.so.0”

Hi all, I am trying the google performance tool for CPU time profiling. However, I had encountered some problem that I cannot read the shared library file "libprofiler.so.0" I had …
0
votes
3answers
98 views

How to distribute a Mac OS X with dependent libraries?

I have a program (specifically my entry for the SO DevDays Countdown app challenge) which relies on several dynamic libraries, namely libSDL, libSDL_ttf, and others. I have these …
1
vote
3answers
192 views

How to construct a C# plug-in framework?

I would like to implement a Plug-In framework for a C# application; such that the application doesn’t need to know of all of the available .DLL’s at time of compilation but can the …
8
votes
3answers
288 views

How lazy can C++ global initialization be?

I'm used to thinking of all initialization of globals/static-class-members as happening before the first line of main(). But I recently read somewhere that the standard allows init …
0
votes
1answer
86 views

Statically and dynamically linking the same library

I have a program that's statically linking to a library (libA.2.0.a) and also dynamically links to another library (libB.so). libB.so also dynamically links to an older version of …
1
vote
2answers
58 views

interposers on Windows

Is it possible to substitute system functions, as is possible on Linux and Solaris using the LD_PRELOAD For example by setting the environment variable: LD_PRELOAD=/path/to/mymall …
1
vote
1answer
120 views

Installshield Dynamic Links Question

Is there any way to exclude a folder that is located under a dynamic link in InstallShield? So I have a dynamic link that starts at PATH_A, and the following is a small example di …
4
votes
3answers
311 views

Building C++ source code as a library - where to start?

Over the months I've written some nice generic enough functionality that I want to build as a library and link dynamically against rather than importing 50-odd header/source files. …

1 2 next
15 30 50 per page