What definitions exist like __LP64__ and __arm64__ in Cocoa that differentiate platforms at compile time? Where or how are they defined? What definitions exist like __LP64__ and __arm64__ in Cocoa that differentiate platforms at compile time? Where or how are they defined? c c

What definitions exist like __LP64__ and __arm64__ in Cocoa that differentiate platforms at compile time? Where or how are they defined?


Those macros are not specific to Cocoa, they are specific to CLANG, and they can be listed on the command line with:

clang -dM -E -x c /dev/null

Different CLANG versions ship with varying amounts of feature flags which can get turned on and off at configuration time or depending on which platform and OS the compiler is running on. A fairly comprehensive list can be found in their testing headers with variants for each supported system also scattered around in the testing directory. Documentation for each depends on whether the flag is specific to CLANG, or defined in one of the standard libraries it links against (for example __llvm__ is defined by CLANG, but __WCHAR_WIDTH__ is defined by LibC). There is really no comprehensive list with definitive documentation for this reason. Different platforms are allowed to do things slightly differently so long as they adhere to language specifications.

The majority of the interesting public Objective-C macros exist in Foundation near the bottom of Foundation/NSObjCRuntime.h.


You may find this list useful.

The link points exactly to the list of architecture ifdef's, here you can find links to other lists (for compiler and platform detection).


After some years, I landed here while searching and offer this update:

Note that __LP64__ is not a reliable check for the 64-bit runtime on any system that doesn't define __LP64__. This is because LP64 is the name of the data model in use, which is one of several 64-bit data models that might be selected.

Data model is the term used to describe the arrangement of standard C/C++ types by size. In this example, LP64 means that long and pointer are 64-bits, with the implication that everything else is smaller. This is a fairly standard GCC/Clang configuration, but by no means universal (other 64-bit platforms use other standards). Microsoft, I believe, uses LLP64 as their data model, with long long and pointer being 64 bits, while int and long are both allocated 32.

There is even a SILP64 data model - 64-bit shorts, yikes!

If you want to detect 64-bits, you will do better to look at the predefined-macros page, which has been mentioned already. You can detect the architecture and go from there. If you want to know the size of certain types, you will probably be able to determine that information more portably by either (1) checking the result of sizeof(...); or (2) checking the values for e.g., INT_MAX, LONG_MAX, etc.