You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/target/riscv/startup.tcl is intended to rewrite deprecated RISC-V-specific commands in TCL.
Such commands include a space in the name (e.g. riscv set_enable_virtual ...). By default TCL will interpret riscv set_enable_virtual ...) as a call to riscv with a first argument set_enable_virtual. To work around this proc riscv is introduced. See https://sourceforge.net/p/openocd/tickets/434/.
src/target/riscv/startup.tcl
is intended to rewrite deprecated RISC-V-specific commands in TCL.Such commands include a space in the name (e.g.
riscv set_enable_virtual ...
). By default TCL will interpretriscv set_enable_virtual ...
) as a call toriscv
with a first argumentset_enable_virtual
. To work around thisproc riscv
is introduced. See https://sourceforge.net/p/openocd/tickets/434/.riscv-openocd/src/target/riscv/startup.tcl
Lines 53 to 55 in 88fe568
However, this is still not enough to cover the case
<target_name> riscv set_enable_virtual ...
.The text was updated successfully, but these errors were encountered: