0

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.

inflator
  • 39
  • 4

1 Answers1

1

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 )

Halt State
  • 421
  • 2
  • 6