Warning: That file was not part of the compilation database. It may have many parsing errors.
| 1 | /* SPDX-License-Identifier: LGPL-2.1 OR MIT */ |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2017-2022 Willy Tarreau <w@1wt.eu> |
| 4 | */ |
| 5 | |
| 6 | #ifndef _NOLIBC_ARCH_H |
| 7 | #define _NOLIBC_ARCH_H |
| 8 | |
| 9 | #if defined(__x86_64__) || defined(__i386__) || defined(__i486__) || defined(__i586__) || defined(__i686__) |
| 10 | #include "arch-x86.h" |
| 11 | #elif defined(__ARM_EABI__) |
| 12 | #include "arch-arm.h" |
| 13 | #elif defined(__aarch64__) |
| 14 | #include "arch-arm64.h" |
| 15 | #elif defined(__mips__) |
| 16 | #include "arch-mips.h" |
| 17 | #elif defined(__powerpc__) |
| 18 | #include "arch-powerpc.h" |
| 19 | #elif defined(__riscv) |
| 20 | #include "arch-riscv.h" |
| 21 | #elif defined(__s390x__) |
| 22 | #include "arch-s390.h" |
| 23 | #elif defined(__loongarch__) |
| 24 | #include "arch-loongarch.h" |
| 25 | #elif defined(__sparc__) |
| 26 | #include "arch-sparc.h" |
| 27 | #elif defined(__m68k__) |
| 28 | #include "arch-m68k.h" |
| 29 | #elif defined(__sh__) |
| 30 | #include "arch-sh.h" |
| 31 | #else |
| 32 | #error Unsupported Architecture |
| 33 | #endif |
| 34 | |
| 35 | #endif /* _NOLIBC_ARCH_H */ |
| 36 |
Warning: That file was not part of the compilation database. It may have many parsing errors.
