Guest User

Untitled

a guest
Jan 18th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. sysctl -n machdep.cpu.brand_string
  2.  
  3. system_profiler SPHardwareDataType
  4.  
  5. Hardware Overview:
  6.  
  7. Model Name: iMac
  8. Model Identifier: iMac13,2
  9. Processor Name: Intel Core i7
  10. Processor Speed: 3.4 GHz
  11. Number of Processors: 1
  12. Total Number of Cores: 4
  13. L2 Cache (per Core): 256 KB
  14. L3 Cache: 8 MB
  15. Memory: 32 GB
  16. Boot ROM Version: IM131.010A.B09
  17. SMC Version (system): 2.11f14
  18. Serial Number (system): XXXXXXXXXXXXXXXXXXX
  19. Hardware UUID: XXXXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX
  20.  
  21. system_profiler SPHardwareDataType | grep Identifier
  22.  
  23. Model Identifier: iMac13,2
  24.  
  25. system_profiler SPHardwareDataType | grep Processor
  26.  
  27. system_profiler SPHardwareDataType
  28.  
  29. sysctl -n machdep.cpu.brand_string
  30. sysctl -a | grep cpu
  31.  
  32. open http://www.google.com/?q=$(sysctl -n machdep.cpu.brand_string
  33. | awk '{FS=" " ; print $2 "+" $3 "+" $4}')+site:ark.intel.com
  34.  
  35. sysctl -n machdep.cpu.brand_string
  36.  
  37. clang-3.5 -v -xc /dev/null -O3 -march=native -o- -E 2>&1 | grep -o 'target-cpu w*'
  38.  
  39. gcc -v -xc /dev/null -O3 -march=native -o- -E 2>&1 | grep -o 'arch=w*'
  40.  
  41. arch=native
  42. arch=core2 <----- This one
  43. arch=native
  44.  
  45. gcc -xc /dev/null -O3 -fverbose-asm -march=native -o- -S | grep -o 'arch=w*'
  46.  
  47. arch=core2
Add Comment
Please, Sign In to add comment