Page 1 of 1

crash in spring-HL, just compiled from git

Posted: 25 Nov 2009, 21:29
by jepperc
Hi. Today I just updated and compiled spring, and began receiving some errors when running it. Please note that this is the headless version of spring, from http://github.com/hughperkins/springheadless.
The stacktrace from GDB is at the following link:
http://pastebin.com/m70532b3d
I can't seem to figure out this error..
Maybe we need master merged into headless again?

Re: crash in spring-HL, just compiled from git

Posted: 25 Nov 2009, 21:42
by hoijui
plese compile with DEBUG3, it looks like you have only DEBUG (-> no line symbols), and try to reproduce. It would be much easier to find out what the problem might be with line numbers in the backtrace.

i request a moderator to move this topic to the Development forum.
And i request once more to make me a Mod in this forum! ;-)

Re: crash in spring-HL, just compiled from git

Posted: 25 Nov 2009, 21:49
by jepperc
will try and post followup tomorrow :)

Re: crash in spring-HL, just compiled from git

Posted: 26 Nov 2009, 01:32
by hughperkins
If you're running Karmic, it could be a known Karmic bug that is fixed in the latest version of spring I believe, and would therefore probably be fixed in springheadless by a merge from spring master.

Edit: you could check this by trying a merge yourself:

Code: Select all

git checkout -b testmerge origin/springheadless   # create new branch testmerge from current springheadless
git remote add spring git://github.com/spring/spring.git
git fetch spring   # retrieve tracking branches from spring repository
git merge spring/master  # merge from spring/master tracking branch into new testmerge branch
Then after building, testing and so on, you can go back to the normal springheadless branch:

Code: Select all

git checkout springheadless
You may or may not know this already, but since it is fairly annoying trying to figure out the exact commands in git when you don't know them already I felt better to put them here, and then if you know them already you can just ignore them, and if you don't they might be useful.

Re: crash in spring-HL, just compiled from git

Posted: 26 Nov 2009, 02:47
by SirMaverick
hoijui wrote:plese compile with DEBUG3
debug2 is enough to get line numbers

Re: crash in spring-HL, just compiled from git

Posted: 26 Nov 2009, 15:05
by jepperc
Thanks for the debug3 (or 2) help.. I haven't been able to recreate the error though, will follow up if I do :)