mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #731 from lindemer/pmp
Allow selection of VexRiscv_Secure* from lxsim CLI
This commit is contained in:
commit
f777cddefe
1 changed files with 4 additions and 0 deletions
|
@ -34,6 +34,8 @@ CPU_VARIANTS = {
|
|||
"linux": "VexRiscv_Linux",
|
||||
"linux+debug": "VexRiscv_LinuxDebug",
|
||||
"linux+no-dsp": "VexRiscv_LinuxNoDspFmax",
|
||||
"secure": "VexRiscv_Secure",
|
||||
"secure+debug": "VexRiscv_SecureDebug",
|
||||
}
|
||||
|
||||
|
||||
|
@ -58,6 +60,8 @@ GCC_FLAGS = {
|
|||
"linux": "-march=rv32ima -mabi=ilp32",
|
||||
"linux+debug": "-march=rv32ima -mabi=ilp32",
|
||||
"linux+no-dsp": "-march=rv32ima -mabi=ilp32",
|
||||
"secure": "-march=rv32ima -mabi=ilp32",
|
||||
"secure+debug": "-march=rv32ima -mabi=ilp32",
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue