Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way how use an old 32-bit static library *.a in a 64-bit system. The is no chance to obtain a source code of this old library to compile it again. I also do not want to use -m32 in gcc, because the program use many 64bit libraries. Thanks.

share|improve this question
You could ship a small 32-bit virtual machine with your code and dispatch library calls to that... – Kerrek SB Jul 24 '11 at 23:56
2  
@Kerrek: A virtual machine isn't necessary, just out-of-process IPC. – Ben Voigt Jul 25 '11 at 0:06

4 Answers

That depends entirely on the platform on which you're running. OS X on PowerPC, for example, that would "Just Work".

On x86 platforms, you can't link a 32-bit library into a 64-bit executable. If you really need to use that library, you'll need to start a separate 32-bit process to handle your calls to the library, and use some form of IPC to pass those calls between your 64-bit application and that helper process. Be forewarned: this is a lot of hassle. Make sure that you really need that library before starting down this road.

share|improve this answer
1  
64-bit Windows runs 32-bit code just fine, as long as it's in a 32-bit user-mode process. – Ben Voigt Jul 25 '11 at 0:05
@Ben Voigt: I was under the impression that it ran them in an emulator. I'm not familiar with WOW64 in detail, so I don't know what forms of IPC are available for communication between a 64-bit and a 32-bit process on Windows. – Stephen Canon Jul 25 '11 at 0:07
@Stephen: Think WINE (which is not an emulator). WOW64 is approximately the same mechanism, providing a set of 32-bit libraries which invoke the OS-specific syscalls. – Ben Voigt Jul 25 '11 at 0:09
@Stephen: If you don't know the particulars of WOW64, you are in no position to judge whether it's "exactly the same" or not. – Ben Voigt Jul 25 '11 at 0:10
1  
@Ben Voigt: A 64-bit OS running a 32-bit process is a rather different animal than 32 and 64 bit code that's in the same address space calling each other. – Omnifarious Jul 25 '11 at 0:47
show 2 more comments

On the x86/x86_64 platform, you can't do this. I mean, maybe you could if you wrote custom assembly language wrappers for each and every 32 bit function you wanted to call. But that's the only way it's even possible. And even if you were willing to do that work I'm not sure it would work.

The reason for this is that the calling conventions are completely different. The x864_64 platform has many more registers to play with, and the 64-bit ABI (Application Binary Interface, basically how parameters are passed, how a stack frame is set up and things like that) standards for all of the OSes make use of these extra registers for parameter passing and the like.

This makes the ABI of 32-bit and 64-bit x86/x86_64 systems completely incompatible. You'd have to write a translation layer. And it's possible the 32-bit ABI allows 32-bit code to fiddle around with CPU stuff that 64-bit code is not allowed to fiddle with, and that would make your job even harder since you'd be required to restore the possibly modified state before returning to the 64-bit code.

And that's not even talking about this issue of pointers. How do you pass a pointer to a data structure that's sitting at a 64-bit address to 32-bit code?

share|improve this answer

Simple answer: You can't .

share|improve this answer
This is technically an answer, but a bit of elaboration would be nice. – Tim Post Jul 25 '11 at 1:00

You need to use -m32 in order to load a 32-bit library.

Probably your best approach is to create a server wrapping the library. Then a 64-bit application can use IPC (various methods, e.g. sockets, fifos) in order to communicate to and from the process hosting the library.

On Windows this would be called out-of-process COM. I don't know that there's a similar framework on unix, but the same approach will work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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