In article <[EMAIL PROTECTED]>,
gelbeiche  <[EMAIL PROTECTED]> wrote:

>gcc was built with "--disable-shared" so the linker does not try link against 
>the shared libraries.

I don't think this is true.  --disable-shared means that you won't
create any shared libraries when building GCC, but I think it will still
use them if they exist.  When you do the link the linker is going to use
its default behavour, which on HP-UX is to look for shared libraries
first.

Try adding -static to your link line.  The linker may be finding
an old shared libstdc++ from an earlier GCC build/installation.

Steve Ellcey
sje <AT> cup . hp . com
_______________________________________________
Help-gplusplus mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to