From: Michael Brown Date: Sun, 2 May 2021 11:35:37 +0000 (+0100) Subject: [cloud] Attempt to include CPUID_SETTINGS only for x86 builds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1dfc05622d183213c55b49c3ea4f4fd5c7bd6253;p=thirdparty%2Fipxe.git [cloud] Attempt to include CPUID_SETTINGS only for x86 builds Signed-off-by: Michael Brown --- diff --git a/src/config/cloud/settings.h b/src/config/cloud/settings.h index 34deeb070..c9d6bdc93 100644 --- a/src/config/cloud/settings.h +++ b/src/config/cloud/settings.h @@ -1,4 +1,6 @@ /* It can often be useful to know the CPU on which a cloud instance is * running (e.g. to isolate problems with Azure AMD instances). */ +#if defined ( __i386__ ) || defined ( __x86_64__ ) #define CPUID_SETTINGS +#endif