Try to mention ARM64 builds in the logs correctly.
authorCarl Hetherington <cth@carlh.net>
Thu, 14 Jan 2021 11:35:36 +0000 (12:35 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 14 Jan 2021 11:35:36 +0000 (12:35 +0100)
src/lib/environment_info.cc

index fd44100cd490adcf67d6f9687f0a40a2d39d4d5d..5b1f56f727e279122211616742cb4598ad0cce32 100644 (file)
@@ -125,9 +125,11 @@ environment_info ()
 
 #if __GNUC__
 #if __x86_64__
-       info.push_back ("Built for 64-bit");
+       info.push_back ("Built for x86 64-bit");
+#elif __aarch64__
+       info.push_back ("Built for ARM 64-bit");
 #else
-       info.push_back ("Built for 32-bit");
+       info.push_back ("Built for x86 32-bit");
 #endif
 #endif