Tagged Questions
13
votes
4answers
335 views
Good practices for writing C dynamic libraries [DSOs] (binary compatibility + memory management)
I have some experience writing C libraries but I've never read any formal documents describing good practices while writing such libraries. My question pertains around mainly 2 topics:
How to ...
6
votes
3answers
185 views
Crosscompiler Binary compatibility in C
I need to verify something for which I have doubts. If a shared library ( .dll) is written in C, with the C99 standard and compiled under a compiler. Say MinGw. Then in my experience it is binary ...
6
votes
3answers
287 views
Are the default constructor and destructor ever inline?
I'm curious if the default constructor and destructor that the compiler generates are inline or not, because I can justify it either way. On the one hand, you want the default constructor/destructor ...
6
votes
7answers
364 views
Why is Application Binary Interface important for programming
I don't understand why the ABI is important context of developing user-space applications. Is the set of system calls for an operating system considered an ABI? But if so then aren't all the ...
5
votes
6answers
918 views
Binary compatibility between Linux distributions
Sorry if this is an obvious question, but I've found surprisingly few references on the web ...
I'm working with an API written in C by one of our business partners and supplied to us as a .so ...
3
votes
1answer
86 views
ABI compatibility header/library cross check
I have been looking around for an ABI cross-check tool. Now I have met some of the tools suggested in other questions, such as in these questions:
How to test binary compatibility automatically?
...
3
votes
2answers
124 views
Binary cross-compiler compatibility of C libraries on Windows
My question is similar to this one, but also regards static libraries:
We have a cross-platform C++ header library that builds nicely under Windows/Linux/Os X that works on multiple compilers and ...
3
votes
4answers
118 views
Binary compatibility of FILE*
I am designing C library which does some mathematical calculations. I need to specify serialization interface to be able to save and then load some data. The question is, is it correct (from binary ...
2
votes
1answer
181 views
Binary compatibility between avr-gcc 3.4.0 and avr-gcc 4.3.x
I have inherited an application that links to a library which MAY HAVE been built with gcc3. Or maybe with the imagecraft compiler. That information has now vanished to the heavenly bitfield and I am ...
2
votes
5answers
821 views
Is it possible to share a C struct in shared memory between apps compiled with different compilers?
I realize that in general the C and C++ standards gives compiler writers a lot of latitude. But in particular it guarantees that POD types like C struct members have to be laid out in memory the same ...
1
vote
2answers
56 views
Library ABI compatibility between versions of Visual Studio
I have two scenarios. Suppose I have 3 shared libraries that export C++ symbols, each built with VS7.1, VS8, and VS9. I compile all 3 in VS9. For some reason, this works. I do not need to recompile ...