summaryrefslogtreecommitdiff
path: root/Guile-TODO
diff options
context:
space:
mode:
authorTom Rondeau2011-03-20 12:31:10 -0400
committerTom Rondeau2011-03-20 12:31:10 -0400
commit972fc99ad6984e50731ec0dd97ccfec71829139b (patch)
treedcbbe06ca254169c122b88600816e504643880dc /Guile-TODO
parent3c3aff088447942053e96ae30b766b00d4cd0202 (diff)
parent4d1426b8db5be20583a6efb380d564a55a28fd09 (diff)
downloadgnuradio-972fc99ad6984e50731ec0dd97ccfec71829139b.tar.gz
gnuradio-972fc99ad6984e50731ec0dd97ccfec71829139b.tar.bz2
gnuradio-972fc99ad6984e50731ec0dd97ccfec71829139b.zip
Merge branch 'master' of gnuradio.org:gnuradio
Diffstat (limited to 'Guile-TODO')
-rw-r--r--Guile-TODO80
1 files changed, 80 insertions, 0 deletions
diff --git a/Guile-TODO b/Guile-TODO
new file mode 100644
index 000000000..9fc7d9c25
--- /dev/null
+++ b/Guile-TODO
@@ -0,0 +1,80 @@
+In no particular order:
+
+11) Write test cases for gr-* components.
+
+ For the one's that have a h/w dependency, just confirm that we can
+ load the module. See gr_audio_alsa/src/audio_alsa.test for an
+ example.
+
+ For the others, write a test in the style of the ones in
+ gnuradio-core.
+
+
+80) Confirm make dist and make distcheck work
+81) Anything else that would keep us from merging into next.
+82) Get some other developers to try it out.
+
+90) Merge to next
+100) Handle any fallout we missed.
+
+-------------------------------------------------------------------------------
+Low priority:
+
+6) Fix printed representation of blocks in gr_block.i
+
+9) Any other FIXME style warnings.
+ (Last one is in usrp2.i)
+
+12) Swig guile modules names: s/_/-/g
+
+16) Test this stuff with Guile 1.9 to confirm that it works and to see
+ how much faster it is. Load time currently is currently kind of doggy.
+
+
+-------------------------------------------------------------------------------
+These are done:
+
+
+1) [DONE] Ensure that libraries containing swig generated code are regenerated
+ when any relevant .i file is touched.
+
+2) [DONE] SIGINT handling in gr_top_block::wait
+
+3) [DONE] Ensure that all 4 combinations of
+ --{enable,disable}-python --{enable,disable}-guile
+ work correctly.
+
+ When both are disabled swig should NOT be run.
+ When --enable-guile --disable-python, python swig stuff should not be generated.
+ When --disable-guile --enable-python, guile swig stuff should not be generated.
+
+4) [DONE] Fix GR_SWIG_BLOCK_MAGIC so that in the guile case we don't map all
+ the constructors into the same name. E.g. audio_alsa_sink -> sink.
+ (Causes problem when multiple gr-* modules are used.)
+
+5) [DONE]Ensure that all gr-* components are generating guile code when
+ enabled, and that (1) and (3) are handled in all gr-* components.
+
+5b) [DONE] Don't forget gr-howto-write-a-block. (It's got its own
+ configure.ac and is built separately from the rest.)
+
+7) [DONE] Fix gr-usrp so that it works. Probably related to
+ warning received when generating python bindings.
+ Making the swig/python warning go away will probably resolve the
+ guile problem.
+
+8) [DONE] Fix gr_message_{sink,source} so that they work under guile.
+ (Not sure if I disabled one or both of these...)
+
+10) [DONE] Finish gnuradio-core test cases
+
+13) [DONE] Change guile libnames to libguile-gnuradio-<module-name>
+
+14) [DONE] Add support to setup_guile_test_env.in for
+ "withlibs", OS/X (DYLD_LIBRARY_PATH), windows (PATH)
+
+15) [DONE] Rewrite gr-run-waveform as C/C++ code that embeds guile.
+ See if we can't statically link libguile into this.
+ Will need to figure out which packages provide libguile.a.
+
+17) [DONE] Get std::vector< std::complex<float> > working