Ray Hurst <[EMAIL PROTECTED]> writes: > Maybe everybody has misunderstood. These are tool issues not basic C > programming. Object file format has nothing to do with C programming. > More specifically they are linker issues. > > Is the ABI format different between C and C++ object files.
If you want to phrase the question in terms of object file format and linker issues, the answer is that the format is the same. It's easy to see why: the compiler does not produce object files. It produces files containing assembly language. The assembler produces object files. The C and C++ compilers use the same assembler. Ian