From 4129378730a04ba9ce17726dc0581e597c0b6576 Mon Sep 17 00:00:00 2001 From: FPGALover Date: Thu, 29 Feb 2024 21:51:29 +0000 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 00f7f5b..39e2adc 100644 --- a/README.md +++ b/README.md @@ -12,17 +12,17 @@ mkdir build/ cd build sudo mkdir /opt/riscv32im sudo chown $USER /opt/riscv32im -./configure --with-arch=rv32im --prefix=/opt/riscv32im +../configure --with-arch=rv32im --prefix=/opt/riscv32im make -j$(nproc) ``` #### For other architectures or variations of RISC-V | Command | ISA | |:---------------------------------------- |:-------- | -|`./configure --with-arch=rv32i --prefix=/opt/riscv32i/ `| `RV32I `| -|`./configure --with-arch=rv32ic --prefix=/opt/riscv32ic/ `| `RV32IC `| -|`./configure --with-arch=rv32im --prefix=/opt/riscv32im/` | `RV32IM `| -|`./configure --with-arch=rv32imc --prefix=/opt/riscv32imc/`| `RV32IMC `| +|`../configure --with-arch=rv32i --prefix=/opt/riscv32i/ `| `RV32I `| +|`../configure --with-arch=rv32ic --prefix=/opt/riscv32ic/ `| `RV32IC `| +|`../configure --with-arch=rv32im --prefix=/opt/riscv32im/` | `RV32IM `| +|`../configure --with-arch=rv32imc --prefix=/opt/riscv32imc/`| `RV32IMC `| ### 2. Corss-Compiling C code for the RISCV picorv32 on WSL or on Linux.