From 5836ada4abfc24f5e338eee9cb5605c52208d3be Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Thu, 10 Aug 2023 13:45:19 +0200 Subject: [PATCH] readme: hdlconvertor needs 'g++' and 'make' Signed-off-by: Unai Martinez-Corral --- .ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci.yml b/.ci.yml index de6929f3..d989cd22 100644 --- a/.ci.yml +++ b/.ci.yml @@ -19,7 +19,7 @@ pytest: stage: test before_script: *BeforeScript script: - - apt-get install -y --no-install-recommends g++ make git python3-dev + - apt-get install -y --no-install-recommends git python3-dev - python3 -m pip install -r requirements.dev.txt - python3 -m pip install git+https://github.com/antmicro/tuttest - tuttest README.md | bash - diff --git a/README.md b/README.md index fff3f7ee..3d0aa239 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ With your package manager you need to install: * Yosys, which is used to extract information about IP cores' interfaces from Verilog. ``` -$(command -v sudo) apt-get install -y git python3 python3-pip antlr4 libantlr4-runtime-dev yosys +$(command -v sudo) apt-get install -y git g++ make python3 python3-pip antlr4 libantlr4-runtime-dev yosys pip3 install -r requirements.txt ```