diff options
author | Zoltan HERPAI <wigyori@uid0.hu> | 2018-12-16 10:45:53 +0100 |
---|---|---|
committer | Zoltan HERPAI <wigyori@uid0.hu> | 2023-06-14 09:22:08 +0200 |
commit | 341e312ada4dda207a9f2c8402e73cc13b195983 (patch) | |
tree | 130d56e4e1773032cda3f7fe10c8d53342f37083 /target | |
parent | 848759c2362fc60fef8aa76f2adeb228af3cae65 (diff) | |
download | upstream-341e312ada4dda207a9f2c8402e73cc13b195983.tar.gz upstream-341e312ada4dda207a9f2c8402e73cc13b195983.tar.bz2 upstream-341e312ada4dda207a9f2c8402e73cc13b195983.zip |
generic: groundwork for RISC-V
Add build infrastructure for RISC-V.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
(cherry picked from commit 50c05f6cd721130701cbbc77a75d2e090259c4e5)
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target/Config.in b/target/Config.in index a6b3351a61..ac0f1f9826 100644 --- a/target/Config.in +++ b/target/Config.in @@ -184,6 +184,10 @@ config powerpc64 select ARCH_64BIT bool +config riscv64 + select ARCH_64BIT + bool + config sh3 bool @@ -223,6 +227,7 @@ config ARCH default "mips64el" if mips64el default "powerpc" if powerpc default "powerpc64" if powerpc64 + default "riscv64" if riscv64 default "sh3" if sh3 default "sh3eb" if sh3eb default "sh4" if sh4 |