18 lines
479 B
Text
18 lines
479 B
Text
module DarwinPrivate.machine [system] {
|
|
#ifndef XNU_PLATFORM_MacOSX
|
|
module _limits {
|
|
header "machine/_limits.h"
|
|
export *
|
|
}
|
|
|
|
#endif
|
|
module cpu_capabilities {
|
|
header "machine/cpu_capabilities.h"
|
|
#if defined(XNU_PLATFORM_MacOSX) || defined(XNU_PLATFORM_iPhoneSimulator) || defined(XNU_PLATFORM_AppleTVSimulator) || defined(XNU_PLATFORM_WatchSimulator)
|
|
header "i386/cpu_capabilities.h"
|
|
#endif
|
|
header "arm/cpu_capabilities.h"
|
|
|
|
export *
|
|
}
|
|
}
|