Enky_Loo

_intel_fast_memcpy

Mar 18th, 2019 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.37 KB | None | 0 0
  1. $ grep -rw "_intel_fast_memcpy" /opt/intel/ 2>&1
  2. # -> list libs where it mentioned goes here.
  3. # We have to use only lib there the symbol goes after 'T' - global test symbol
  4. # Something like this:
  5. # 0000eb70 T _intel_fast_memcpy
  6. # 0000ea80 T _intel_fast_memcpy.A
  7. # 0000eb40 T _intel_fast_memcpy.H
  8. # Use nm to get it.
  9. $ nm -A <path to a lib> | grep "T _intel_fast_memcpy"
Add Comment
Please, Sign In to add comment