[llvm] [BOLT] Enable hugify for AArch64 (PR #117158)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 05:36:16 PDT 2025


================
@@ -151,10 +151,12 @@ struct timespec {
   uint64_t tv_nsec; /* nanoseconds */
 };
 
-#if defined(__aarch64__)
+#if defined(__aarch64__) || defined(__arm64__)
 #include "sys_aarch64.h"
-#else
+#elif defined(__x86_64__)
 #include "sys_x86_64.h"
+#else
+#error "For AArch64/ARM64 and X86_64 only."
----------------
alekuz01 wrote:

Sure! Why not? Or it just removes this line entirely because of this: 

```
# Determine default set of targets to build -- the intersection of                                                                                                                         
# those BOLT supports and those LLVM is targeting.                                                                                                                                         
set(BOLT_TARGETS_TO_BUILD_all "AArch64;X86;RISCV") 
```

But if you worry about the cognitive effort that might be hard to understand as you demonstrated in your case:

"AArch64;X86;RISCV  archs is supported!"


https://github.com/llvm/llvm-project/pull/117158


More information about the llvm-commits mailing list