I'm working on a project that is cross platform, and on OS X one section must be built with clang/llvm because it creates a Cocoa window, the rest of the project is built with GCC. This is compiled into a static library which is linked into the main executable. For example
//printnum.h
std::pair<uint32_t, uint32_t> printnum(int num);
//printnum.mm
#include "printnum.h"
#include <stdio.h>
std::pair<uint32_t, uint32_t> printnum(int num)
{
printf("%d\n", num);
//..... Objective C Code.....
}
//main.cpp
#include "printnum.h"
int main()
{
printnum(0);
return 0;
}
I'm using CMake to generate a makefile. I've tried several different sets of compiler flags -fPIC etc. But I get values printed like 1835455280, 1746993968, 1648001840. Shouldn't the two compilers be binary compatible? If I make the function void, then it works just fine.