From 2dd7a4e1d762da6340470c1928200098f7f90367 Mon Sep 17 00:00:00 2001 From: tinyboxvk Date: Thu, 7 Nov 2024 10:00:58 -0400 Subject: [PATCH] Update README.md (#113) Use all available cores to speed up compilation. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8df063c5..3848408d 100644 --- a/README.md +++ b/README.md @@ -108,11 +108,11 @@ The out of tree module gr-lora_sdr can be installed from source or directly as a ```sh cmake .. -DCMAKE_INSTALL_PREFIX= # default to usr/local, CONDA_PREFIX or PYBOMB_PREFIX if no install prefix selected here ``` -- Finally compile the custom GNU Radio blocks composing the LoRa transceiver. Replacing \ with the number of core you want to use to speed up the compilation. +- Finally compile the custom GNU Radio blocks composing the LoRa transceiver. ```sh - (sudo) make install -j + (sudo) make install -j$(nproc) ``` -- if you installed as sudo run +- If you installed as sudo run ```sh sudo ldconfig ```