From 70b06300f706ae51114438c1060fa5911f2c0d72 Mon Sep 17 00:00:00 2001 From: RGD2 Date: Sun, 5 Dec 2021 13:36:21 +1100 Subject: [PATCH] Update install.rst Build instructions from source for debian-based distros fixed - a git clone line was added to clarify when and where source should be - tested on Debian GNU/Linux 11 (bullseye) / WSL2 --- doc/guide/install.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/guide/install.rst b/doc/guide/install.rst index 4287307..a42f2d7 100644 --- a/doc/guide/install.rst +++ b/doc/guide/install.rst @@ -90,11 +90,12 @@ To build the app: .. code-block:: bash + git clone https://github.com/trabucayre/openFPGALoader mkdir build cd build - cmake ../ # add -DBUILD_STATIC=ON to build a static version - # add -DENABLE_UDEV=OFF to disable udev support and -d /dev/xxx - # add -DENABLE_CMSISDAP=OFF to disable CMSIS DAP support + cmake ../openFPGALoader # add -DBUILD_STATIC=ON to build a static version + # add -DENABLE_UDEV=OFF to disable udev support and -d /dev/xxx + # add -DENABLE_CMSISDAP=OFF to disable CMSIS DAP support cmake --build . # or make -j$(nproc)