loongarch64: added initial support of LoongArch64 CPU architecture

This commit is contained in:
r-a-sattarov 2021-07-25 21:03:25 +03:00
parent d430f6a1fd
commit c82bc9c52b
2 changed files with 4 additions and 0 deletions

View file

@ -343,6 +343,8 @@ Using the models argument will also export all needed models by entity declarati
* Initial support for the MIPS64 architecture (thanks to Ramil Sattarov)
* Initial support for the LoongArch64 architecture (thanks to Ramil Sattarov)
* Initial support for the PPC64 architecture (thanks to Trung Lê)
* Initial support for the Raspberry Pi 4 (thanks to Alejandro Piñeiro)

View file

@ -125,6 +125,8 @@ If you have questions concerning this license or the applicable additional terms
#define CPUSTRING "riscv"
#elif defined(__sparc__) || defined(__sparc)
#define CPUSTRING "sparc"
#elif defined(__loongarch64)
#define CPUSTRING "loongarch64"
#else
#error unknown CPU
#endif