Skip to content

Commit

Permalink
doc: using stow to set up a bison herd
Browse files Browse the repository at this point in the history
* README-hacking.md (Stow): New.
  • Loading branch information
akimd committed Nov 20, 2020
1 parent e5854bb commit 5629305
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README-hacking.md
Expand Up @@ -585,6 +585,24 @@ apt-get update
apt-get install -y gcc-4.6 g++-4.6 m4 make
```

## Stow

If you want to install several versions of Bison using GNU Stow, do
something like this:

```
for v in 3.7 3.7.1
do
cd /tmp
wget https://ftp.gnu.org/gnu/bison/bison-$v.tar.xz
tar xf bison-$v.tar.xz
cd bison-$v
./configure --prefix /usr/local/stow/bison-$v
make -j4
sudo make install
done
```

Release Procedure
=================

Expand Down

0 comments on commit 5629305

Please sign in to comment.