Updated Common problems and their solutions (markdown)

András Retzler 2016-04-03 11:00:56 +02:00
parent 1040063aaa
commit 0ac54eb35f

@ -76,16 +76,3 @@ Pressing Ctrl+C in the terminal should terminate OpenWebRX gracefully.
sudo killall -9 openwebrx rtl_mus csdr rtl_sdr
## I have compiled FFTW myself, but csdr fails to link to it
If you get GCC error messages like this, when attempting to compile `csdr`:
undefined reference to `fftwf_malloc'
...then you should recompile FFTW with the `--enable-float` option given at the configure stage.
```
./configure --enable-float
make
sudo make install
```
Then compile `csdr` again.