Tagged Questions
10
votes
4answers
1k views
How to design a C++ API for binary compatible extensibility
I am designing an API for a C++ library which will be distributed in a dll / shared object. The library contains polymorhic classes with virtual functions. I am concerned that if I expose these ...
9
votes
2answers
735 views
__cdecl or __stdcall on Windows?
I'm currently developing a C++ library for Windows which will be distributed as a DLL. My goal is to maximize binary interoperability; more precisely, the functions in my DLL must be usable from code ...
8
votes
2answers
145 views
Will adding enum definition inside a class break its binary-backward-compatibility?
I know adding static member function is fine, but how about an enum definition? No new data members, just it's definition.
A little background:
I need to add a static member function (in a class), ...
8
votes
2answers
117 views
Change pure virtual to virtual and stay binary compatible
Can I change a pure-virtual function (in a base class) to become non-pure without running into any binary compatibility issues? (Linux, GCC 4.1)
thanks
7
votes
1answer
145 views
Can one extend virtual interface without recompilation of client code?
A library provides a class with virtual functions. Can this class be extended with new virtual functions without recompiling binaries dynamically linked to the library?
I beleive this is not possible ...
7
votes
4answers
229 views
Does changing the order of class private data members breaks ABI
I have a class with number of private data members (some of them static), accessed by virtual and non-virtual member functions. There's no inline functions and no friend classes.
class A
{
int ...
6
votes
3answers
276 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
2answers
283 views
C++ Library Compatibility
I am currently writing a library and am considering moving from GCC 4.1.2 to 4.5.2 (latest release) of GCC. If I compile my code into a static library can I assume compiler compatibility (on the same ...
6
votes
7answers
339 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 ...
4
votes
2answers
529 views
Building Boost with LSB C++ Compiler
I want to build my program with LSB C++ Compiler from the Linux Standard Base http://www.linuxfoundation.org/collaborate/workgroups/lsb. Program depends on the Boost library, built with gcc 4.4 ...
3
votes
1answer
64 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
112 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
1answer
327 views
Virtual Destructor causes Access Violation
I am trying to make a DLL file compatible with different compiler configurations (Debug, Release,..). In order to make sure that an object is removed the right way I managed to write a pointer wrapper ...
3
votes
3answers
175 views
Binary compatibility of STL containers
Let's say I write a DLL in C++ and would like to export a method which takes a std::vector parameter. Can I hope for any binary compatibility between different STL versions?
3
votes
5answers
370 views
adding virtual function to the end of the class declaration avoids binary incompatibility?
Could someone explain to me why adding a virtual function to the end of a class declaration avoids binary incompatibility?
If I have:
class A
{
public:
virtual ~A();
virtual void ...
3
votes
3answers
376 views
C++ exceptions binary compatibility
my project uses 2 different C++ compilers, g++ and nvcc (cuda compiler).
I have noticed exception thrown from nvcc object files are not caught in g++ object files.
are C++ exceptions supposed to be ...
3
votes
3answers
431 views
How to test binary compatibility automatically?
Can it be done before compiling, by comparing code? Is there any tools already doing this?
3
votes
3answers
132 views
Does source incompatibility always imply binary incompatibility?
Any examples demonstrating where source compatibility is broken yet binary compatibility is maintained is welcome.
2
votes
3answers
94 views
Virtual override and binary compatibility
I have a library that can be compiled as a shared library (or DLL in Windows). It has a class that is derived from another class in another library. The base class has some virtual methods and my ...
2
votes
3answers
252 views
C++ Dynamic Library Compiling/Linking
I know that if I link my c++ program to a dynamic library (DLL) that was built with a different version of Visual Studio, it won't work because of the binary compatibility issue.
(I have experienced ...
2
votes
2answers
351 views
Running/compiling executable Linux vs Solaris
if i have code compiled under Solaris 8 and 10 and now have a vendor that wants to use my bin/exe under Linux. Could there be compatibility issues?
I am pretty sure i would need to compile/link ...
2
votes
4answers
211 views
Can Global Arrays in C++ Break Binary Compatibility?
Say a shared library contains the following lines:
const char* const arr[] =
{
"one",
"two",
"three"
};
1) Can an application link to this library and use the symbol "arr"?
2) Is binary ...
2
votes
2answers
191 views
What's the recommended way of designing my public-facing API to support multiple POD types while minimizing the chance of breaking binary compatibility?
I'm currently designing a public-facing C++ API for a product which will require a precompiled binary/DLL (it will be cross-platform). I'd like for the API to allow the user to use any POD we support ...
2
votes
2answers
799 views
does adding new member function into d pointer class break binary compatibility?
Will adding new member function into d pointer class definition break binary compatibility?
For example, will the new definition below break binary compatibility compared to the original? (side ...
2
votes
7answers
1k views
C++: Dll compatibility between compilers
Is there some way to make c++ dlls built with diffrent compilers compatible with each other? The classes can have factory methods for creation and destruction, so each compiler can use its own ...
1
vote
2answers
27 views
.lib built with VS2008 used by a binary built with VS2005
What could prevent me from linking with a third-party .lib built with Visual Studio 2008 in a program that I compile with Visual Studio 2005? Thanks
1
vote
3answers
105 views
STL Containers and Binary Interface Compatibility
STL Binary Interfaces
I'm curious to know if anyone is working on compatible interface layers for STL objects across multiple compilers and platforms for C++.
The goal would be to support STL types ...
1
vote
1answer
60 views
ABI compatibility of interfaces (abstract classes) with other virtual changes
Does the ABI of the view of a class remain stable even if other changes, involving virtuals, are made in the derived class?
That is, say I have an interface InterfaceA (abstract class with many pure ...
1
vote
1answer
187 views
Strange access violation at vector indexer
At first some introductions: I am currently working on a C++ compatibility thing which means being able to run projects with different compiler options with each other. Therefore I test with a Release ...
1
vote
2answers
135 views
C++ and binary compatibility: returning a POD struct by value
Consider the following C++ code:
struct X
{
int a;
int b;
};
X foobar()
{
X x = { 1, 2 };
return x;
}
Now assume this code is put in a shared library, which is used ...