Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Use all available cores to speed up compilation.
  • Loading branch information
tinyboxvk authored Oct 21, 2024
1 parent 31d37d9 commit 72e5678
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 @@ -109,11 +109,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 72e5678

Please sign in to comment.