I'm running on Linux and I got a library (.a) which was compiled by Intel compiler.
I'm trying to link against this static library (I'm using g++) and getting link error:
undefined reference to intel_fast_memcpy
I requested to get the library as a shared library (.so) which was compiled by intel compiler too, and I got the same error.
How can I use libraries which were compiled by Intel compiler, when I'm using gcc?