vote up 0 vote down star

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.

flag

59% accept rate

3 Answers

vote up 6 vote down

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 defined __i386__ || defined __x86_64__
NSString *processorType = @"Intel";
#elif defined __ppc__ || defined __ppc64__
NSString *processorType = @"PPC";
#elif defined __arm__
NSString *processorType = @"ARM";
#else
NSString *processorType = @"Unknown Architecture";
#endif

If you really want to do the determination at runtime for some perverse reason, you should be able to use the sysctlbyname function, defined in <sys/sysctl.h>.

link|flag
Depending on the purpose, you may find the __LITTLE_ENDIAN__ and __BIG_ENDIAN__ macros more useful (especially if you intend to also support the iPhone, which is an ARM platform). – Peter Hosey Oct 25 at 0:30
Given that the questioner wanted the values as strings, I assumed they weren't intending to use them to determine endianness. I modified the example to include ARM, just in case. – Stephen Canon Oct 25 at 0:58
I would prefer to figure out at runtime. It's nothing perverse, I just need to write it to a file config file. (For reasons are stupid and out of my control.) – zekel Oct 25 at 6:18
2  
Stephen's answer gives it to you at runtime. Do that, then write processorType into your config file. – Ken Oct 25 at 8:17
1  
With what I gave you the answer is still available at runtime; it just avoids needing to do the decision at runtime. – Stephen Canon Oct 25 at 13:15
vote up 0 vote down

The only part of that mess which you actually care about is here:

host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, &infoCount);

See the Mach headers in Kernel.framework for struct and constant definitions.

link|flag
I'm not sure how to use that. What do I have to import? Which variables do I have to define? (I'm still unclear on how it works when you have to pass &references to C-functions.) – zekel Oct 25 at 6:17
That's something you might want to read up on before writing software in C. – NSD Oct 29 at 1:41
vote up 0 vote down

How about uname?

struct utsname uts;
uname(&uts);
printf("%s\n", uts.machine);

Will print like PPC or i386 or x86_64 depending on the machine.

link|flag
That won't compile? "Storage size of 'uts' isn't known" – zekel Oct 25 at 6:11
1  
#include <sys/utsname.h> (developer.apple.com/mac/library/…) – Quinn Taylor Oct 26 at 20:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.