Changes between Version 32 and Version 33 of Internal/BuildingGNURadioImage


Ignore:
Timestamp:
Mar 11, 2009, 9:43:00 PM (15 years ago)
Author:
ssugrim
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/BuildingGNURadioImage

    v32 v33  
    505505
    506506
    507 
     507----
     508
     509=== 3/11/09 ===
     510
     511Blocks on my head...
     512
     513We're going to attempt to build the example block:
     514
     515In the /root/gnuradio/gr-howto-write-a-block directory, we first ran the bootstrap script (cuz we got it from SVN).
     516{{{
     517node1-1:~/gnuradio/gr-howto-write-a-block# ./bootstrap
     518configure.ac:28: installing `./install-sh'
     519configure.ac:28: installing `./missing'
     520src/lib/Makefile.am: installing `./depcomp'
     521src/lib/Makefile.am:56: installing `./py-compile'
     522}}}
     523
     524This created a configure script which puke out much stuffs but in the end didn't complain about any thing:
     525{{{
     526node1-1:~/gnuradio/gr-howto-write-a-block# ./configure
     527.
     528.
     529.
     530configure: creating ./config.status
     531config.status: creating Makefile
     532config.status: creating config/Makefile
     533config.status: creating doc/Makefile
     534config.status: creating src/Makefile
     535config.status: creating src/lib/Makefile
     536config.status: creating src/python/Makefile
     537config.status: creating src/python/run_tests
     538config.status: creating config.h
     539config.status: executing depfiles commands
     540config.status: executing run_tests commands
     541}}}
     542
     543After a successful configure, make pushed through with a few warning, but no halting errors. Make check passed all the tests:
     544
     545{{{
     546node1-1:~/gnuradio/gr-howto-write-a-block# make check
     547.
     548.
     549.
     550OK
     551PASS: run_tests
     552==================
     553All 1 tests passed
     554==================
     555make[3]: Leaving directory `/root/gnuradio/gr-howto-write-a-block/src/python'
     556make[2]: Leaving directory `/root/gnuradio/gr-howto-write-a-block/src/python'
     557make[2]: Entering directory `/root/gnuradio/gr-howto-write-a-block/src'
     558make[2]: Nothing to be done for `check-am'.
     559make[2]: Leaving directory `/root/gnuradio/gr-howto-write-a-block/src'
     560make[1]: Leaving directory `/root/gnuradio/gr-howto-write-a-block/src'
     561make[1]: Entering directory `/root/gnuradio/gr-howto-write-a-block'
     562make[1]: Nothing to be done for `check-am'.
     563make[1]: Leaving directory `/root/gnuradio/gr-howto-write-a-block'
     564node1-1:~/gnuradio/gr-howto-write-a-block#
     565
     566}}}
     567
     568Make install - no complaints. Thus all the libraries and tools are in place for making blocks.  Taking an image.
     569
     570
     571