diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-12 16:16:54 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-15 09:54:58 -0800 |
commit | e60dda57f3f7856b920cbb2dd9a03bc40227bffd (patch) | |
tree | 5dfb9f565179acd27999e455bc7b1c850095e952 /.cirrus/Dockerfile.ubuntu20.04 | |
parent | 664407089b51e1c66d91ff1ee4aa4d4148bb8f1b (diff) | |
download | nextpnr-e60dda57f3f7856b920cbb2dd9a03bc40227bffd.tar.gz nextpnr-e60dda57f3f7856b920cbb2dd9a03bc40227bffd.tar.bz2 nextpnr-e60dda57f3f7856b920cbb2dd9a03bc40227bffd.zip |
Add libcapnp-dev for FPGA interchange compilation support.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to '.cirrus/Dockerfile.ubuntu20.04')
-rw-r--r-- | .cirrus/Dockerfile.ubuntu20.04 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.cirrus/Dockerfile.ubuntu20.04 b/.cirrus/Dockerfile.ubuntu20.04 index 60bbcc1b..095d1d33 100644 --- a/.cirrus/Dockerfile.ubuntu20.04 +++ b/.cirrus/Dockerfile.ubuntu20.04 @@ -9,7 +9,8 @@ RUN set -e -x ;\ build-essential autoconf cmake clang bison wget flex gperf \ libreadline-dev gawk tcl-dev libffi-dev graphviz xdot python3-dev \ libboost-all-dev qt5-default git libftdi-dev pkg-config libeigen3-dev \ - zlib1g-dev curl python3-pip + zlib1g-dev curl python3-pip libcapnp-dev capnproto + RUN set -e -x ;\ mkdir -p /usr/local/src ;\ |