inflator
inflator

Reputation: 39

Undefined intel_sse4_strlen

I am running into an issue. After I compiled my program with no problem, then I ran it and got an error that I could not figure out: enter image description here

I did "nm -u 64rm | grep intel" and got the following:

enter image description here

How do I compile or what should I do for these API defined in Text section like this: enter image description here

Thank you for your help.

Upvotes: 0

Views: 515

Answers (1)

Halt State
Halt State

Reputation: 431

You'll need to link an external library that has those function definitions - eg, as `libirc.a' (reference: https://software.intel.com/content/www/us/en/develop/articles/unresolved-external-symbol-_intel_sse2_strlen.html )

Upvotes: 1

Related Questions