RISC-V Meaty Skeleton with QEMU virt board: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
No edit summary
Line 37: Line 37:


<source lang="bash">
<source lang="bash">
$ export GDB_VERSION="12.1"
export GDB_VERSION="12.1"
$ wget https://ftp.gnu.org/gnu/gdb/gdb-${GDB_VERSION}.tar.xz
wget https://ftp.gnu.org/gnu/gdb/gdb-${GDB_VERSION}.tar.xz
</source>
</source>


Line 44: Line 44:


<source lang="bash">
<source lang="bash">
$ tar xvf gdb-${GDB_VERSION}.tar.xz
tar xvf gdb-${GDB_VERSION}.tar.xz
</source>
</source>


Line 50: Line 50:


<source lang="bash">
<source lang="bash">
$ pushd gdb-${GDB_VERSION}/
pushd gdb-${GDB_VERSION}/
</source>

Create a build directory and move into it:

<source lang="bash">
mkdir build
pushd build/
</source>
</source>