In message <[EMAIL PROTECTED]>, Dan ABITBOL writes: >How can I make out ? what shoul i do to built the dynamic library from the >static one and what do I have to write in my makefile to link my main with it >against the static one that the linker automatically calls ? > >PS: what PDC means ?
PDC is Position Dependent Code, ie the opposite of PIC. Shared libraries have to be compiled as PIC; "static libraries" are usually built as PDC because it's more efficient. There is no way to transform one into the other without recompiling, so in general you can't directly build a shared library from a static one. p. _______________________________________________ http://lists.arm.linux.org.uk/mailman/listinfo/linux-arm Please visit the above address for information on this list.
