Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I compile a function with gcc and then use it with clang?

Tags:

c

gcc

llvm

clang

I am trying to use SSE4.2 intrinsics with clang/llvm but its not compiling, as I get cannot select intrinsic error from LLVM. On the other hand, the same code compiles flawlessly in gcc. So I thought, maybe I can compile that function with gcc, so as to have an object or library file, and then call that library function in my code, which is compiled by clang/llvm. Would that work?

like image 603
MetallicPriest Avatar asked May 03 '13 15:05

MetallicPriest


1 Answers

It's possible to compile an object file with GCC in Linux and convert it to work in Visual Studio. I did this recently running Linux in Virtual Box on Windows converting-c-object-file-from-linux-o-to-windows-obj so this should be possible with Clang on Linux or Windows as well.

So not only can this be done cross compiler it can be done cross platform.

You need to get the calling conventions and the object file format correct (and for C++ the name mangling as well) . With GCC when you compile you can tell it which calling convention/API to use with mabi. Then, if going from Linux to Windows, you need an object file converter to convert from e.g. ELF on Linux to COFF on Windows. Of course, there are cases this probably won't work (e.g. if the module relies on a system call that is only in one platform). See the link above for more details.

like image 102
Z boson Avatar answered Sep 30 '22 02:09

Z boson