Hi, > Jonhathan wrote : > > Please only post to the list if the problem continues even after using > trunk revision >= 7461; we're looking for exceptions at this point.
As with r7554, GNU Radio still have the swig problem with top_block(). The flow_graph does not have this problem. I'm using Ubuntu 7.10, on P4 system. Here is my tests : ==================================================== [EMAIL PROTECTED]:~$ python Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from gnuradio import gr >>> tb = gr.top_block() >>> tb.start () >>> tb.stop () >>> tb.start () terminate called after throwing an instance of 'std::runtime_error' what(): already running Aborted [EMAIL PROTECTED]:~$ python Python 2.5.1 (r251:54863, Oct 5 2007, 13:36:32) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> from gnuradio import gr >>> fg = gr.flow_graph () >>> fg.start () >>> fg.stop () >>> fg.start () >>> fg.stop () >>> ================================================= My system information is : ---------------------------------------- [EMAIL PROTECTED]:~$ g++ --version g++ (GCC) 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2) Copyright (C) 2006 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. [EMAIL PROTECTED]:~$ python -V Python 2.5.1 [EMAIL PROTECTED]:~$ swig -version SWIG Version 1.3.31 Compiled with g++ [i686-pc-linux-gnu] Please see http://www.swig.org for reporting bugs and further information [EMAIL PROTECTED]:~$ uname -a Linux ubuntu 2.6.17-12-server #2 SMP Tue Dec 18 02:13:45 UTC 2007 i686 GNU/Linux [EMAIL PROTECTED]:~/newgnuradio$ svn info Path: . URL: http://gnuradio.org/svn/gnuradio/trunk Repository Root: http://gnuradio.org/svn Repository UUID: 221aa14e-8319-0410-a670-987f0aec2ac5 Revision: 7554 Node Kind: directory Schedule: normal Last Changed Author: jcorgan Last Changed Rev: 7536 Last Changed Date: 2008-02-01 11:48:00 -0500 (Fri, 01 Feb 2008) ------------------------------------------------------------------------------------ Regards, Firas -- View this message in context: http://www.nabble.com/Information-on-ticket%3A181-and-invitation-to-help-%28long%29-tp14933481p15284990.html Sent from the GnuRadio mailing list archive at Nabble.com. _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
