We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got cannot find -lsdrutil at the make step. Following the advice in #55, i.e. cd trunk/src/dspserver && make libsdrutil.a && make resulted in...
cannot find -lsdrutil
cd trunk/src/dspserver && make libsdrutil.a && make
/usr/bin/ld: tx.o: undefined reference to symbol 'bctbx_set_log_level_mask' /usr/bin/ld: /lib/x86_64-linux-gnu/libbctoolbox.so.1: error adding symbols: DSO
Google turned up https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1778282.html, with the crucial advice: "you also need to link to -lbctoolbox" Adding -lbctoolbox to the other -ls in the Makefile fixed the dspserver build for me, and the sdrutil problem went away.
-lbctoolbox
-l
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I got
cannot find -lsdrutil
at the make step.Following the advice in #55, i.e.
cd trunk/src/dspserver && make libsdrutil.a && make
resulted in...
Google turned up https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1778282.html, with the crucial advice:
"you also need to link to -lbctoolbox"
Adding
-lbctoolbox
to the other-l
s in the Makefile fixed the dspserver build for me, and the sdrutil problem went away.The text was updated successfully, but these errors were encountered: