Tagged Questions

15
votes
4answers
1k views

Creating Library with backward compatible ABI that uses Boost

I'm working on certain C++ library (or more framework). I want to make it backward compatible with previous versions preserving not only API compatibility but also ABI (like the great job Qt does). I ...
9
votes
2answers
2k views

GCC ABI compatibility

As far as I've understood, it is not possible to link libraries that use different versions of GCC's Application Binary Interface (ABI). Are there ABI changes to every version of GCC? Is it possible ...
4
votes
5answers
116 views

Does changing f(mystruct *a) to f(const mystruct *a) breaks API/ABI in C?

1: void f(mystruct *a) 2: void f(const mystruct *a) Does changing the function signature from 1->2 break API/ABI in C? Changing 2->1 break API/ABI in C?
2
votes
4answers
215 views

Maintaining ABI: adding constructor to struct

We have a struct in revision 1 of a shared library that we need to maintain the ABI for: struct Person { std::string first_name; std::string last_name; } In the revision 2, we're changing ...