View previous topic :: View next topic |
Author |
Message |
LiquidAir n00b

Joined: 04 Oct 2003 Posts: 2 Location: Ontario, Canada
|
Posted: Tue Jan 13, 2004 2:48 am Post subject: ICC Linking Failing |
|
|
Ok i've been trying to compile GIMP with ICC so i did something like this:
Code: |
CC="icc" CXX="icpc" CFLAGS="-O2 -xN" CXXFLAGS=$CFLAGS emerge gimp-1.3.23.ebuild
|
Now ICC compiled all the Object files fine, but when it came to linking; LD couldn't recognize ICC's Object Files so i tried to use ICC's Linking:
Code: |
ln -sf /usr/bin/icc /usr/bin/ld
|
once again when linking time came. i now got this error but DURING ./configure:
checking for C compiler default output... configure: error: C compiler create executables
What do i do to get gimp compiled!?
Thanks _________________ "If you aren't in over your head, how do you know how tall you are?" |
|
Back to top |
|
 |
Kihaji Apprentice

Joined: 12 Sep 2002 Posts: 230
|
Posted: Tue Jan 13, 2004 4:29 am Post subject: |
|
|
Thats because icc is not a linker, its a compiler. xild is the Intel linker.
I suggest sticking to GCC for now until you read up on how to use ICC. |
|
Back to top |
|
 |
|