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 left with a libXXX.a library against which to link my app. I cannot recompile the libXXX.a because it requires certain unknown headers from imagecraft and somewhere else which at a certain point may have been ubiquitous in my environment but now are nowhere to be found.

My question is this, provided that my compiling my app with avr-gcc version 3.4.0 (and linking to that "special" libXXX) resulted in a working binary image, is it reasonable to expect that I could compile all the other parts of my app with avr-gcc 4 (this action having some very nice and proven benefits), link with libXXX and still get a working program?

Essentially, it all boils down to: is avr-gcc binary compatible with "mysterious compiler X which just may have been avr-gcc 3.something"?

To be honest, I have successfully compiled the rest of my app with avr-gcc4 and linked it with the library, and verified that the result works, but what kind of side effects or quirks should I be on the lookout for?

link|improve this question

1  
This seems like an opportune time to mention what you probably already know: backups and revision control are your friends.... but you needed to be using them in the past to get the benefit in the present. Its never too late to start, and your future self will thank you ;-) – RBerteig Oct 28 '10 at 7:27
as I said, I inherited this situation...since then revision control has been reinstated but it still doesn't help me on this :) – Manjabes Oct 28 '10 at 7:32
feedback

1 Answer

up vote 2 down vote accepted

Linking libraries from different compilers (or -versions) will work reliably if both compilers use the same ABI (Application Binary Interface)

The ABI of a specific platform is typically specified by the dominant compiler for that platform, but that could be done by referencing an external specification.
ABI changes are rare, especially if the platform supports third-party libraries/applications, because an ABI change means that literally everything has to be rebuilt.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.