mirror of https://github.com/YosysHQ/yosys.git
Add lld to clang build environments and Dockerfile
This commit is contained in:
parent
bf758b9097
commit
a947572f38
|
@ -8,6 +8,7 @@ RUN apt-get update -qq \
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
|
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
clang \
|
clang \
|
||||||
|
lld \
|
||||||
curl \
|
curl \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
libreadline-dev \
|
libreadline-dev \
|
||||||
|
|
|
@ -79,7 +79,7 @@ Xdot (graphviz) is used by the ``show`` command in yosys to display schematics.
|
||||||
For example on Ubuntu Linux 16.04 LTS the following commands will install all
|
For example on Ubuntu Linux 16.04 LTS the following commands will install all
|
||||||
prerequisites for building yosys:
|
prerequisites for building yosys:
|
||||||
|
|
||||||
$ sudo apt-get install build-essential clang bison flex \
|
$ sudo apt-get install build-essential clang lld bison flex \
|
||||||
libreadline-dev gawk tcl-dev libffi-dev git \
|
libreadline-dev gawk tcl-dev libffi-dev git \
|
||||||
graphviz xdot pkg-config python3 libboost-system-dev \
|
graphviz xdot pkg-config python3 libboost-system-dev \
|
||||||
libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
||||||
|
|
|
@ -94,7 +94,7 @@ Installing all prerequisites for Ubuntu 20.04:
|
||||||
|
|
||||||
.. code:: console
|
.. code:: console
|
||||||
|
|
||||||
sudo sudo apt-get install build-essential clang bison flex \
|
sudo sudo apt-get install build-essential clang lld bison flex \
|
||||||
libreadline-dev gawk tcl-dev libffi-dev git make \
|
libreadline-dev gawk tcl-dev libffi-dev git make \
|
||||||
graphviz xdot pkg-config python3 libboost-system-dev \
|
graphviz xdot pkg-config python3 libboost-system-dev \
|
||||||
libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
libboost-python-dev libboost-filesystem-dev zlib1g-dev
|
||||||
|
|
Loading…
Reference in New Issue