Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update buildfiles with missing build dependencies. #73

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions debian-bullseye/cvc/HDLC
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ makedepends=(
python3-pyparsing
python3-toml
python3-venv
python3-pip
pkg-config
openjdk-11-jre-headless
)

Expand Down
2 changes: 2 additions & 0 deletions debian-bullseye/ghdl-yosys-plugin.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ FROM $REGISTRY/yosys AS base
RUN apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get -y install --no-install-recommends \
libgnat-9 \
g++ \
make \
&& apt-get autoclean && apt-get clean && apt-get -y autoremove \
&& rm -rf /var/lib/apt/lists

Expand Down
6 changes: 6 additions & 0 deletions debian-bullseye/pono/HDLC
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,16 @@ makedepends=(
m4
patch
python3-toml
python3-pip
pkg-config
openjdk-11-jre-headless
)

build() {
pip3 install meson
pip3 install ninja
pip3 install tomli
pip3 install pyparsing
git clone https://github.com/upscale-project/pono.git /tmp/pono
cd /tmp/pono
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/^v//g' > /tmp/hdlc.pono.version
Expand Down
3 changes: 2 additions & 1 deletion debian-bullseye/yosys/HDLC
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ makedepends=(
flex
gawk
gcc
build-essential
pkg-config
zlib1g-dev
clang
Expand All @@ -38,7 +39,7 @@ testdepends=(
)

build() {
git clone https://github.com/YosysHQ/yosys.git /tmp/yosys
git clone --recurse-submodules https://github.com/YosysHQ/yosys.git /tmp/yosys
cd /tmp/yosys
make -j $(nproc)
make DESTDIR=/opt/yosys install
Expand Down