Re: Question about mixing objects beetween MSVC++ and GCC

2003-02-20 Thread Pavel Tsekov
No, you cannot mix C++ object. GCC and MSVC use different name mangling schemes. However, you can try to wrap the C++ functionality in C functions and link against them. Eventually this will work. On Thu, 20 Feb 2003, Eric Jacquemard wrote: > In the FAQ I read that I can mix objects compiled wi

Question about mixing objects beetween MSVC++ and GCC

2003-02-20 Thread Eric Jacquemard
In the FAQ I read that I can mix objects compiled with msvc++ and gcc. I would like to have a precision : Can I mix mscv++ object files (C++) with C object files generated by gcc ? If OK : how can I do that ? Do I need specific options (for compiling and linking) ? In my case : I would like to ca