We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9761e0 commit 1280551Copy full SHA for 1280551
install_apt_packages.sh
@@ -1,13 +1,23 @@
1
sudo apt-get update
2
3
+# Base packages to compile and run basic regression tests
4
sudo apt-get install -y \
5
make \
6
cmake \
7
build-essential \
8
pkg-config \
9
bison \
10
flex \
- libgtk-3-dev \
11
- libx11-dev \
12
python3-dev \
13
python3-venv
+
14
+# Required for graphics
15
+sudo apt-get install -y \
16
+ libgtk-3-dev \
17
+ libx11-dev
18
19
+# Required for yosys front-end
20
21
+ clang \
22
+ tcl-dev \
23
+ libreadline-dev
0 commit comments