RosettaCodeData/Task/Host-introspection/Objective-C/host-introspection-2.m
2023-07-01 13:44:08 -04:00

21 lines
490 B
Objective-C

switch ([NSRunningApplication currentApplication].executableArchitecture) {
case NSBundleExecutableArchitectureI386:
NSLog(@"%@", @"i386 32-bit");
break;
case NSBundleExecutableArchitectureX86_64:
NSLog(@"%@", @"x86_64 64-bit");
break;
case NSBundleExecutableArchitecturePPC:
NSLog(@"%@", @"PPC 32-bit");
break;
case NSBundleExecutableArchitecturePPC64:
NSLog(@"%@", @"PPC64 64-bit");
break;
default:
NSLog(@"%@", @"Unknown");
break;
}