bootstrap issue on Fedora
Fedora splits development packages, so when tup requires FUSE to bootstrap, it fails even though the fuse package is installed. ./bootstrap-nofuse.sh does not seem to work; the correct workaround is to install the fuse-devel package.
I suggest changing the wording to "require the FUSE development package" to help people realize that they need the one with .h files, not just the binaries.
This is true on all distros, tup uses fuse so building it requires libfuse
To be very clear for future seekers, you need to
sudo apt install libfuse-dev
For Fedora you need to run sudo dnf install fuse-devel.