The library itself compiles just fine with icc, but when I try to link to it (using icc for both the driver code and the linker), I get the same error that this question on stackoverflow is asking about.
I've heard that gsl is very specific to the gnu compiler. Can gsl be compiled and linked to with icc? What about other compilers, like Clang?
find /path/to/your/intel/libraries -name '*.so'| xargs nm -DA | grep __intel_sse2_strcpyand then link to the library that resolves the symbol (i.e. has a 'T' in the second column). – Bill Barth Jun 12 '12 at 01:38