How to compile wth gcc, Intel static libraries?

I have a program that I am compiling with gcc. I got a static library (.a file) that was compiled using the Intel compiler (icc).

How can I use and link this library? (I do not have icc, and the other side must use icc to use Intel instruction sets).

I am trying to compile (link to this library), but I am getting an error in Intel instructions ...

  • My goal is Intel I7.
  • The first error I get is: "undefined reference to` _intel_fast_memcpy '"

thanks

+4
source share

Source: https://habr.com/ru/post/1619143/


All Articles