Hi Przemek,
Because it causes on some platforms huge speed overhead,
i.e. su...@x86 builds with SunPRO C and tests/speedtst.prg.
Default optimization settings with -KPIC:
[ total application time: ]....................................29.46
[ total real time: ]...........................................29.53
and without -KPIC:
[ total application time: ]....................................23.46
[ total real time: ]...........................................23.53
As you can see Harbour libraries compiled unconditionally as position
independent code are over 25% slower. Of course it depends on used
hardware. Some processors can use only PIC so such switches has no
effect.
We need PIC to create harbour shared library. Some platforms like
x...@32 for most of code (with some few seldom exceptions) can accept
code compiled without PIC switches to create shared libraries.
You can remove it from sunpro.cf if base platform is x...@32 and
the final binaries will be much faster. Anyhow such tricks works
only on few number of platform and always have to be tested.
It's possible that we add some new code which will block such
hidden conversion. The ideal solution is introducing to our GNU
make system two phase compilation. One for static libraries
without any switches to force PIC and second for harbour shared
library which will use -fPIC/-KPIC or any other platform dependent
switch used to force position independent code.
After recent make system changes it's now very easy to
enable separate PIC compilation pass for shared harbour
lib. See the method now used for non-GCC wce/win targets.
Of course the shared lib generation script will have to
be updated, but it shouldn't be very complicated.
Brgds,
Viktor
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour