Guest User

Untitled

a guest
Jul 15th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. robin-mbp:bin robince$ file ./python2.6
  2. ./python2.6: Mach-O universal binary with 2 architectures
  3. ./python2.6 (for architecture i386): Mach-O executable i386
  4. ./python2.6 (for architecture x86_64): Mach-O 64-bit executable x86_64
  5. robin-mbp:bin robince$ arch -i386 ./python2.6 -c "import sys; print sys.maxint"
  6. 9223372036854775807
  7. robin-mbp:bin robince$ arch -x86_64 ./python2.6 -c "import sys; print sys.maxint"
  8. 9223372036854775807
Add Comment
Please, Sign In to add comment