From 9f6d3dd82ee35de5555002ad931915e67d206a83 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Mon, 21 Mar 2022 23:00:39 +0100 Subject: [PATCH] doc/guide: Add instructions for manual installation on macOS --- doc/guide/install.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/guide/install.rst b/doc/guide/install.rst index 0c5fb89..ad7e763 100644 --- a/doc/guide/install.rst +++ b/doc/guide/install.rst @@ -134,6 +134,19 @@ openFPGALoader is available as a `Homebrew `__ formula: brew install openfpgaloader +Alternatively, if you want to build it from hand: + +.. code-block:: bash + + brew install --only-dependencies openfpgaloader + brew install cmake pkg-config zlib + git clone https://github.com/trabucayre/openFPGALoader + cd openFPGALoader + mkdir build + cd build + cmake .. + make -j + Windows =======