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 ...
11
votes
2answers
260 views
If I jump out of a catch-block with “goto”, am I guaranteed that the exception-object will be free'ed?
I have such code as follows
try {
doSomething();
} catch(InterruptException) {
goto rewind_code;
}
if(0) {
rewind_code:
longjmp(savepoint, 1);
}
My question is, is the exception object that ...
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 ...
8
votes
4answers
282 views
In C++, does overriding an existing virtual function break ABI?
My library has two classes, a base class and a derived class. In the current version of the library the base class has a virtual function foo(), and the derived class does not override it. In the next ...
7
votes
1answer
103 views
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
Is the Java Native Interface (JNI) affected by C++ ABI compatibility issues?
I am developing a Java application. I would like to use the Java Native Interface (JNI) to call functions in a C++ ...
7
votes
6answers
589 views
What could C/C++ “lose” if they defined a standard ABI?
The title says everything. I am talking about C/C++ specifically, because both consider this as "implementation issue". I think, defining a standard interface can ease building a module system on top ...
6
votes
1answer
102 views
How does adding a private member variable break C++ ABI compatibility?
The pimpl idiom is commonly used in order to allow changing code in dynamically linked libraries without breaking ABI compatibility and having to recompile all the code that depends on the library.
...
6
votes
3answers
275 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
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 ...
3
votes
2answers
168 views
Best Practise and Semantics of namespace nested fucntions and the use of extern “C”
I am creating a C++ library with a C-ABI interface.
This is how GCC treats the extern "C" qualifier with regards to mangling:
namespace x {
extern "C" int monkey(int x) {
return 1;
...
2
votes
2answers
81 views
C++1y Modules and the C++ ABI
I've been reading about the C++ modules proposal (latest draft) but I don't fully understand what problem(s) it aims to solve.
Is its purpose to allow a module built by one compiler to be used by any ...
2
votes
1answer
96 views
Shared libraries and linking on Linux (elf)
I have read the thread on Creating Library with backward compatible ABI that uses Boost and I'm now trying to understand how I should link my shared libraries to maintain a stable ABI, and avoid ...
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 ...
2
votes
3answers
2k views
How to expose STL list over DLL boundary?
I have a DLL which needs to access data stored in STL containers in the host application. Because C++ has no standard ABI, and I want to support different compilers, the interface between the ...
1
vote
1answer
50 views
Does Eclipse have to deal with C++ ABI compatibility issues?
The Eclipse project offers installers for Linux. Do these installers (or the installed executables) contain any compiled C++ code? If so, how does Eclipse avoid C++ ABI compatibility issues?
I ...
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
69 views
How can Qt containers be passed as parameters to functions of a shared library?
I am writing a library function, and I really need to be able to pass arguments like vectors & maps to it.
I know you can't have a function with STL parameters declared at the header of a library
...
1
vote
2answers
98 views
Gcc x64 function calling
As far as I know, there are two possible calling conventions for the x64 code - Microsoft x64 and AMD64.
Now, gcc can be launched with the -mregparm=0 parameter, which doesn't work if we are working ...
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
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 ...
1
vote
0answers
150 views
Size of a class with virtual base class [closed]
Possible Duplicate:
object size with virtual
class X {};
class Y : public virtual X {};
class Z : public virtual X {};
class Class : public Y, public Z {};
Why sizeof(Class) outputs ...
1
vote
2answers
639 views
Cross-compiling libraries for ARM device
I am experiencing some difficulties in deploying a sample application which uses Qt libraries to an ARM device. I compiled the libraries using the cross-compiler provided for my system, I copied the ...
1
vote
1answer
122 views
C++ / Fortran inter language ABI issues with older versions of GCC
We have managed to get our code building and running on Ubuntu 10.10. The code uses both C++ compiled with GCC 4.5 and fortran compiled with the latest version of ifort. We may be required to support ...