| 195 | |
| 196 | That is the usrp stuff was never built. Examining the config.log file in |
| 197 | {{{ |
| 198 | node1-1:~/gnuradio# less config.log | grep usrp |
| 199 | configure:31892: result: Component usrp requires guile, which was not found. <---- |
| 200 | configure:32681: result: Not building component usrp. |
| 201 | configure:32791: result: Component gr-usrp requires usrp, which is not being built or specified via pre-installed files. |
| 202 | configure:32834: result: Not building component gr-usrp. |
| 203 | configure:35081: result: Component gr-gpio requires usrp, which is not being built or specified via pre-installed files. |
| 204 | configure:35495: result: Component gr-radar-mono requires usrp, which is not being built or specified via pre-installed files. |
| 205 | configure:36993: result: Component gr-sounder requires usrp, which is not being built or specified via pre-installed files. |
| 206 | configure:37164: result: Component gr-utils requires usrp, which is not being built or specified via pre-installed files. |
| 207 | }}} |
| 208 | |
| 209 | From this we can see guile was the missing components (what ever the heck that is). According to the Ubuntu install docs, we need guile version 1.6. Apt-get says that guile is a pointer: |
| 210 | |
| 211 | {{{ |
| 212 | Package guile is a virtual package provided by: |
| 213 | guile-1.8 1.8.5+1-4.1 |
| 214 | guile-1.6 1.6.8-6.1 |
| 215 | }}} |
| 216 | |
| 217 | We're gonna pick 1.8. |