Is there any way to get an install the gnuradio binaries on raspberry-pi?
At the moment, I am running the build script that took 2 hours on my core i7 1.6 GHz quad core Xeon. I have a UHS-1 45Mb/s Sandisk Extreme card in place and that does not seem to be helping speed up the process either :-/
Update: After several hours and many attempts, the build script failed as it could not find libraries with prefix libfftw. Nevertheless I did install them. If I cannot get binaries, how do I successfully compile it?
Update @2012-10-31 21:40 UTC: I installed fftw and fftw-dev before the build script could proceed any further.
Update @2012-11-01 03:16 UTC: After a few trials, I managed to get the error rounded up here is the screen shot - https://www.dropbox.com/s/2e4dqkximyz2o5p/20121031_220814.jpg?m
Update @2012-11-01 03:43 UTC: A little bit of search got me a patch file. The problem was originally reported here. However, while applying this patch, I discover that it has already been applied to the git repository. So that is another dead end :-(
Update @2012-11-01 16:43 UTC: I tried to compile it with the the neon disabled
cmake -Dhave_mfpu_neon=0 -DCMAKE_CXX_FLAGS:STRING="-march=armv6 -mfpu=vfp -mfloat-abi=hard" -DCMAKE_C_FLAGS:STRING="-march=armv6 -mfpu=vfp -mfloat-abi=hard" -CMAKE_CXX_FLAGS "-fexceptions" -CMAKE_CXX_COMPILER "/usr/bin/arm-linux-gnueabi-gcc" ../
And ended up getting consistent errors at 37% - "Internal Compiler error - file bug report"
Update @2012-11-02 12:20 UTC: I finally got it to compile. It might be that the lack of memory was causing problems along with other things. Increasing the swap space helped.
https://www.dropbox.com/s/nll0qhm4z09vvgk/gnuRadio-RPi.tar.gz is the built binary. Should anyone want to try these, let me know if it works.