Re: [nox-dev] Debugging from nox crash log

2010-10-24 Thread James Murphy McCauley
It looks like you have a custom component that's maybe doing something bad inside a timer handler? I'd start inspecting there (e.g., by disabling timers...). -- Murphy On Oct 23, 2010, at 12:12 PM, Nikhil Handigol wrote: My NOX controller seems to be segfaulting quite a bit of late. What is

[nox-dev] Nox module overwritten

2010-10-24 Thread Aaron Rosen
Hello, I'm trying to add a new module to nox. I've followed the instructions ( http://noxrepo.org/noxwiki/index.php/Developing_in_NOX#Building_a_Python_only_component ). I've added pytutoral.py to nox/src/nox/coreapps/examples, and have added the following entry to meta.json, {

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread James Murphy McCauley
You mention ./build/src/nox/coreapps/examples/pytutorial.py and ./nox/build/src/nox/coreapps/examples/pytutorial.py. I'm having trouble making sense of these paths. Is one of them wrong, or are they not relative to the same directory? -- Murphy On Oct 24, 2010, at 12:09 PM, Aaron Rosen

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread Aaron Rosen
Sorry, aro...@arosen-desktop:~/nox$ find . | grep pytutorial ./build/src/nox/coreapps/examples/pytutorial.py -- Incorrect ./nox/src/nox/coreapps/examples/pytutorial.py -- Correct ./nox/build/src/nox/coreapps/examples/pytutorial.pyc ./nox/build/src/nox/coreapps/examples/pytutorial.py -- correct

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread Murphy McCauley
I think maybe you created the first one (./build/src/nox/coreapps/examples/pytutorial.py) by mistake? The tutorial SHOULD advocate having a build directory inside the nox directory, but SHOULD NOT advocate having a build directory as a sibling of the nox directory. In your case, it looks

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread Niky Riga
Not related to the specific configuration, but do you think there is a problem in general having the build directory to be completely separate from the src directory? This is how I have set it up, and up to now I had no problems, but maybe I do and I don't know about them:-) --niky Murphy

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread Aaron Rosen
Hmm, I'm not sure what I did wrong before but it works now. Thanks, Aaron On Sun, Oct 24, 2010 at 4:59 PM, Niky Riga nr...@bbn.com wrote: Not related to the specific configuration, but do you think there is a problem in general having the build directory to be completely separate from the

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread Nicholas Bastin
On Sun, Oct 24, 2010 at 13:59, Niky Riga nr...@bbn.com wrote: Not related to the specific configuration, but do you think there is a problem in general  having the build directory to be completely separate from the src directory? This is how I have set it up, and up to now I had no problems,

Re: [nox-dev] Nox module overwritten

2010-10-24 Thread kk yap
I believe we might have problems with having the same source and build directory, but separate directories should work. The latter is the default way I build and test. Regards KK On 24 October 2010 13:59, Niky Riga nr...@bbn.com wrote: Not related to the specific configuration, but do you