Advertisement
Guest User

Untitled

a guest
May 14th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. find . -type f | while read file; do file "$file" 2>/dev/null | grep -q "Intel 80386" && echo "$file"; done | \
  2. while read executable; do objdump --no-show-raw-insn -d "$executable" 2>/dev/null | \
  3. egrep '\ *[0-f]:'| cut -d: -f2 | as -32 -march="i486+mmx+8087+387+287" -mtune=i486 2>&1| \
  4. grep -vi CMPXCHG8B | grep -q "not supported on" && echo "$executable has non i486+ instructions"; done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement