You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
309 B

#if defined(HOST_ARM64)
# if !defined(__aarch64__)
# error "Not compiling as host arm64"
# endif
#elif defined(HOST_X86_64)
# if !defined(__x86_64__)
# error "Not compiling as host x86_64"
# endif
#else
# error "One of HOST_ARM64 or HOST_X86_64 must be defined."
#endif
void default_arch(void)
{
}