Guest User

Untitled

a guest
Jan 19th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. ## To find versions of GLIBCXX supported by a standard library:
  2. ```
  3. strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCXX
  4. ```
  5.  
  6. ## Find versions mentioned in a binary:
  7. ```
  8. nm BinaryName | c++filt | grep GLIBCXX | perl -pe 's/.*GLIBCXX_([\d\.]+.*)/\1/g' | sort | uniq
  9. ```
Add Comment
Please, Sign In to add comment