Skip to content

Commit

Permalink
Update README.md (#113)
Browse files Browse the repository at this point in the history
Use all available cores to speed up compilation.
  • Loading branch information
tinyboxvk authored Nov 7, 2024
1 parent f3b0eb8 commit 2dd7a4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<your 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 \<X> 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<X>
(sudo) make install -j$(nproc)
```
- if you installed as sudo run
- If you installed as sudo run
```sh
sudo ldconfig
```
Expand Down

0 comments on commit 2dd7a4e

Please sign in to comment.