Tagged Questions

Binary compatibility is generally an ability of two hardware systems to run the same binary code without the need to recompile.

learn more… | top users | synonyms

16
votes
5answers
21k views

What causes java.lang.IncompatibleClassChangeError?

For some reason our java library that we package as a jar is throwing all of these java.lang.IncompatibleClassChangeError when we try to invoke methods from it. It seems to be seemingly random. What ...
13
votes
4answers
298 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 ...
13
votes
2answers
581 views

What would I lose by abandoning the standard EventHandler pattern in .NET?

There's a standard pattern for events in .NET - they use a delegate type that takes a plain object called sender and then the actual "payload" in a second parameter, which should be derived from ...
12
votes
2answers
390 views

Tool for backwards compatibility for the C#/.NET API?

I found this tool, http://sab39.netreach.com/Software/Japitools/JDK-Results/46/, which checks for backwards compatibility between different versions of APIs for Java using javadoc. Is there an tool ...
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 ...
10
votes
8answers
1k views

Genericized commons collection

I'm astonished that the Apache Commons Collections project still hasn't got around to making their library generics-aware. I really like the features provided by this library, but the lack of support ...
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
8
votes
4answers
524 views

How to identify a missing method (Binary Compatibility) in a JAR without running it?

I want to verify binary compatibility between 2 JARs. Following the suggestions in this answer I used jboss tattletale but it can find only missing classes. How can I find if there are missing ...
7
votes
3answers
532 views

Conditionally linking for @autoreleasepool

When I try to run my application in the iOS 4.3 simulator (Xcode 4.2), I crash when I hit @autoreleasepool{}, with: dyld: lazy symbol binding failed: Symbol not found: _objc_autoreleasePoolPush I ...
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
3answers
164 views

C# interface breakage, ABI

Suppose we have the class X in version 1 of the assembly A.dll: class X { SomeType Property { set; get; } } and then in version 2 of the assembly A.dll: class X { SomeType Property { set; ...
7
votes
7answers
1k views

Is JDK “upward” or “backward” compatible?

Backward binary compatibility (or downward compatibility) - an ability of clients built with an old version of library API to run on a new one (wiki). Upward binary compatibility (or forward ...
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
171 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
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
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 ...
5
votes
0answers
190 views

Is this interface binary compatible between MSVC and mingw?

I am working on a library that allows its users (other libraries residing in the same process) to exchange data buffers and streams. The library has to be usable from both MSVC and mingw code (more ...
5
votes
3answers
302 views

Retrofitting void methods to return its argument to facilitate fluency: breaking change?

"API design is like sex: make one mistake and support it for the rest of your life" (Josh Bloch on twitter) There are many design mistakes in the Java library. Stack extends Vector (discussion), ...
5
votes
3answers
242 views

Java - binary compatibility of abstract class & subclasses

In Java, I define an abstract class with both concrete and abstract methods in it, and it has to be subclassed independently by third-party developers. Just to be sure: are there any changes I could ...
5
votes
5answers
518 views

Scala: binary incompatibility between releases

Why is Scala binary incompatible between different releases?
5
votes
7answers
2k views

Linux distribution binary compatibility

Any way to make a binary in a Linux distribution and run it on another distribution with same architecture? Or I should compile and build it on different distributions? Is there any compatibility ...
5
votes
6answers
877 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 ...
4
votes
1answer
330 views

GCC target specificity and binary compatibility

Initial note: The question mentions AIX because it is the initial context but the question really pertains to gcc itself, most probably regardless of the platform. AIX is supposed to be backwards ...
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 ...
4
votes
2answers
200 views

Refactored methods and binary compatibility in Java

When refactoring methods it is easy to introduce binary incompabilities (with previous versions of the code) in Java. Consider changing a method to widen the type of its parameter to a parent ...
3
votes
1answer
63 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
70 views

How do I preserve binary compatibility for a .NET Assembly that presents a COM interface?

We have developed a .NET Assembly that stores language translation information and it needs to be consumed by a VB6 application. We would like to be able to change the translation information without ...
3
votes
1answer
167 views

Scala Backward Compatibility

What changes or code evolution break backward compatibility (mainly binary compatibility)? Is it fully specified anywhere? I checked the Scala language specification, but didn't see any section on ...
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
4answers
112 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 ...
3
votes
1answer
172 views

VB6 IDE Is Locking The Loaded Project's DLL

I'm responsible for maintaining legacy VB6 code, and have encountered an annoying problem with regard to the locking of a project's COM DLL. (We'll call it MyProject and MyProject.dll) When I load ...
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
429 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.
3
votes
3answers
177 views

Changing a constructor param type breaks class in another jar

I have the following class in a common jar: public class Common { public Common(List list) { ... } } I then change the constructor parameter from a List to a Collection as follows: ...
2
votes
2answers
79 views

Circumventing vb6 binary compatibility [closed]

This is more or less an academia question to help me better understand this process... not so much a request to figure out how to get around binary compatibility so no need to explain why I shouldn't ...
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
2answers
91 views

Is it safe to return a struct from an stdcall dll function?

I am designing an API that has to be binary-compatible between at least mingw and msvc++. So far I have restricted myself to using function which take and return primitive data types or pointers to ...
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
1answer
178 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
2answers
118 views

newer gcc binary running on older systems

I have a binary compiled with gcc 4.4.0 and am trying to run it on an older system, which does not have gcc 4.4.0. It doesn't work. The error is not that it can't find a symbol, but it just doesn't ...
2
votes
1answer
135 views

Is it possible to achieve binary compatibility in .NET library?

I have a .NET library visible in COM, and it's called from a vb6 application. If I add some methods and release a new version (but don't erase or change signatures of existing methods), I would like ...
2
votes
2answers
427 views

GCC 4.0, 4.2 and LLVM ABI Compatibility

Are the three main compiler flavors supported by Xcode (gcc 4.0, 4.2, and llvm) binary-compatible with one another? What kind of gotchas and corner cases should I be aware of when bringing a ...

1 2