I need to get it as a string to use elsewhere in the program, I'm not worried about compiler settings.
I found HowToGetHardwareAndNetworkInfo on CocoaDev, but it seemed a little intense when all I wanted to know is PPC vs. Intel.
|
|
I need to get it as a string to use elsewhere in the program, I'm not worried about compiler settings. I found HowToGetHardwareAndNetworkInfo on CocoaDev, but it seemed a little intense when all I wanted to know is PPC vs. Intel.
|
||
|
|
|
|
If your application is built fat (i.e. isn't running under rosetta on intel), you don't need to make any calls to get this information, because different code will be running, depending on which architecture you're on. Thus, the information is available at compile time:
If you really want to do the determination at runtime for some perverse reason, you should be able to use the |
||||||||||||||
|
|
|
The only part of that mess which you actually care about is here:
See the Mach headers in Kernel.framework for struct and constant definitions. |
||
|
|
How about
Will print like PPC or i386 or x86_64 depending on the machine. |
||||||
|