Hi,

I am compiling with linux and linking with gcc. For several reasons I have to use two separate tools.  I used to do this by compiling all the object files into one static library, which I then use in building other targets. But I just realized I can not control the library size with this method, since using all the GCC visibility settings does not work on static libs..

So my question is, can anyone point me to an example that show how to compile a "obj" target with one tool and including this source in another link with a different tool. When I do it I get conflicts on mixing properties for targets.

Thanks.

/Bo