I've tried to compile your fork of Egal, but I can't even get started. I'm using Tails OS which doesn't have
make. This means I can't compile using the usual
configure,
make,
make install. (Tails OS doesn't have ocaml either, but I compiled ocaml for Tails earlier.) I could start Tails with the ability to sudo, install
make, and then Egal might compile, but this is a time consuming process.
The original Egal included a bash script
makebytecode that compiled the bytecode version without requiring make. I tried using this old script on your fork, but it doesn't work. First, the script expects there to be a bin directory, which is not in your Egal. This is easy enough to fix with
mkdir bin. Then calling the script I got this:
365 states, 24874 transitions, table size 101686 bytes
File "src/mgcheck.ml", line 40, characters 0-23:
Error: Unbound module Axioms
At this point, I decided to give up and write this post. Can you include a script like the old
makebytecode that can compile Egal without
make?