84a85,86
> #elif THE_ISA == RISCV_ISA
> #include "arch/riscv/linux/process.hh"
706a709,721
> #elif THE_ISA == RISCV_ISA
> if (objFile->getArch() != ObjectFile::Riscv)
> fatal("Object file architecture does not match compiled ISA (RISCV).");
> switch (objFile->getOpSys()) {
> case ObjectFile::UnknownOpSys:
> warn("Unknown operating system; assuming Linux.");
> // fall through
> case ObjectFile::Linux:
> process = new RiscvLinuxProcess(params, objFile);
> break;
> default:
> fatal("Unknown/unsupported operating system.");
> }