Building Pydrofoil from source#
On this page we’ll describe how to build or download a Pydrofoil binary.
Requirements#
Pydrofoil has been extensively tested on Ubuntu Linux on x86-64 host systems. It should also work on WSL and on macOS (with x86-64 and ARM CPUs).
To build Pydrofoil, you need the following software installed (if you are working on the Sail model you likely have all of these already):
a working C-compiler (gcc or clang) installed
GNU Make
git
opam
python3
libffi and its development headers (package libffi-dev on Ubuntu)
Sail 0.14 (see next section).
On Ubuntu, you are able to install all of these with apt
with the following
command:
sudo apt install build-essential git opam python3 libffi-dev
All the other Pydrofoil build requirements are downloaded automatically by the build scripts/Makefile.
Installing Sail 0.14#
You can skip this subsection if you already have a Sail binary version 0.14 installed. Otherwise, keep reading.
At the moment Pydrofoil
only works with Sail 0.14, but we are working on 0.15 support. So in order to
build Pydrofoil, you need to install Sail pinned to version 0.14. First install
opam
, the ocaml package manager, if you don’t have it already.
Then you can run (this assumes a bash shell):
opam switch create pydrofoil ocaml.4.13.1
eval $(opam env --switch=pydrofoil)
opam install sail=0.14
This will create a new ocaml environment and install Sail 0.14 into it. Therefore these steps are also safe to execute if you already have Sail 0.15 installed. You can test that it worked by running:
sail -v
Which should print:
Sail 0.14 (sail2 @ opam)
Building Pydrofoil Starting from a Sail-riscv checkout#
To build Pydrofoil, you first need to clone the Sail-RISC-V model repository. If you already have a checkout, you can use that instead.
git clone https://github.com/riscv/sail-riscv.git # or use your existing checkout
cd sail-riscv
Afterwards, there is a script that you can use to download all the requirements for building Pydrofoil and then start the build process. It works like this:
wget https://raw.githubusercontent.com/pydrofoil/pydrofoil/one-stop-build-script/build-pydrofoil-from-sail.sh
chmod a+x build-pydrofoil-from-sail.sh
./build-pydrofoil-from-sail.sh
This will
clone the pydrofoil repo from github
use sail to translate the ISA specifications into JIB files (about 5 minutes)
download and use a pypy2.7 to translate the RPython-based pydrofoil source code into an executable (about 20 minutes)
copy the executable into the sail-riscv directory
You can test that it worked like this:
./pydrofoil-riscv test/riscv-tests/rv64ui-p-beq.elf
Which should print:
tohost located at 0x80001000
entrypoint 0x80000000
CSR mstatus <- 0x0000000A00000000 (input: 0x0000000000000000)
SUCCESS
Instructions: 305
Total time (s): 0.000361
Perf: 844.397835 Kips
See here for more instructions on how to use Pydrofoil, including how to boot Linux.
If you are interested in working on Pydrofoil itself, please read the instructions on the page Developing Pydrofoil.