On 2/11/09, Thomas_09 <[email protected]> wrote: > > > I'm working on Windows, with mspgcc, on a project with RF device. The pb is > that the corporation who give me the device, have provided me libraries > with .r43 extension > (produced with IAR i guess).
I don't know IAR but I suspect that .r43 are the IAR-generated binary object files for MSP430. If that's the case, you are asking how to link them into a GCC project. This depends on the compatibility of the calling convention used by those two compilers---how they pass parameters, which registers they preserve/clobber across procedure calls, etc. You'd have to figure it out for IAR, and possibly write wrapper/translator shims that are called from GCC and set things up in the IAR style.
