On Wed, 4 Jun 2003, Aly Dharshi wrote:

> Hello Avi,
> 
>       Sorry to ask a daft question, you have RH9 and Intel icc 7.1 working ?
> 
>       Well what command did you use to get rid of those errors that come up 
> with those __ctype_h sort ?


        Hey Aly, try "linking" w/ -i_dynamic. For your test proggie
you can do

        icc -o aly  aly.cc -i_dynamic

and it will compile/link/run.

        If you have multiple source files you only need the -i_dynamic
on the link step i.e:

        icc -c a.cc
        icc -c b.cc
        icc a.o b.o -o ab -i_dynamic

        I have no idea what it does really, I found this via google which
had snarfed the intel developer forums, but at least it works :)

        -avi


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to