From bac16eb1c4d58d63969575b7f5e5176dad8f2f1b Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Tue, 14 Jul 2026 13:02:52 +0200 Subject: [PATCH] README: simplify build instructions --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c8626c96b..334f14429 100644 --- a/README.md +++ b/README.md @@ -128,15 +128,13 @@ file which enables ccache and sets the default compiler to clang when calling } ``` -Once generated, the build system can be run as follows: +Once generated, build yosys like this: - $ cmake --build build #..or.. - $ cd build - $ cmake --build . + $ cmake --build build -To quickly install Yosys with the default settings: +To build and install a release build of Yosys: - $ cmake -B build . -DCMAKE_BUILD_TYPE=Release + $ cmake -B build -DCMAKE_BUILD_TYPE=Release $ cmake --build build --config Release --parallel $(nproc) $ sudo cmake --install build --strip