You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run $ sudo make I get the following output and error: $ sudo make g++ -g -O3 -D INCLUDE_B210 -o scan.o -c -I ../target/include -std=gnu++11 scan.cpp In file included from scan.cpp:17:0: b210Source.h:3:35: fatal error: uhd/usrp/multi_usrp.hpp: No such file or directory compilation terminated. Makefile:22: recipe for target 'scan.o' failed make: *** [scan.o] Error 1
This looks like a really cool application, and as I'm just getting into SDR, I'm really interested in checking this out. Any help would be appreciated. :)
The text was updated successfully, but these errors were encountered:
Hi Kishaihd,
Have you installed GNUradio ? And if so is it from source using PyBombs or a binary distribution (using say apt-get) ?
The scan program requires GNUradio. The below error seems to indicate that you do not have uhd installed or it is installed at a different location from my machine.
On my machine the headers were installed at "../target/include" hence the "-I ../target/include" in the build command. You should add wherever your uhd includes are located with the correct "-I" option.
Or if you don't have any uhd based radios from Ettus you can remove the "-D INCLUDE_B210" from the compile command line.
________________________________
From: Kishaihd <notifications@github.com>
Sent: Monday, November 28, 2016 3:39 PM
To: wpats/scanner
Subject: [wpats/scanner] uhd/usrp/multi_usrp.hpp: No such file or directory (#1)
When I run $ sudo make I get the following output and error:
$ sudo make g++ -g -O3 -D INCLUDE_B210 -o scan.o -c -I ../target/include -std=gnu++11 scan.cpp In file included from scan.cpp:17:0: b210Source.h:3:35: fatal error: uhd/usrp/multi_usrp.hpp: No such file or directory compilation terminated. Makefile:22: recipe for target 'scan.o' failed make: *** [scan.o] Error 1
This looks like a really cool application, and as I'm just getting into SDR, I'm really interested in checking this out. Any help would be appreciated. :)
-
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#1>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AK_1KLr-ip_BHBr7Xg35rmUDm5rR6OKNks5rC2YagaJpZM4K-ZQq>.
When I run
$ sudo make
I get the following output and error:$ sudo make g++ -g -O3 -D INCLUDE_B210 -o scan.o -c -I ../target/include -std=gnu++11 scan.cpp In file included from scan.cpp:17:0: b210Source.h:3:35: fatal error: uhd/usrp/multi_usrp.hpp: No such file or directory compilation terminated. Makefile:22: recipe for target 'scan.o' failed make: *** [scan.o] Error 1
This looks like a really cool application, and as I'm just getting into SDR, I'm really interested in checking this out. Any help would be appreciated. :)
The text was updated successfully, but these errors were encountered: