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?
crash in spring-HL, just compiled from git
Moderators: hoijui, Moderators
Re: crash in spring-HL, just compiled from git
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!
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
will try and post followup tomorrow :)
- hughperkins
- AI Developer
- Posts: 836
- Joined: 17 Oct 2006, 04:14
Re: crash in spring-HL, just compiled from git
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:
Then after building, testing and so on, you can go back to the normal springheadless branch:
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.
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
Code: Select all
git checkout springheadless
-
- Posts: 834
- Joined: 19 May 2009, 21:10
Re: crash in spring-HL, just compiled from git
debug2 is enough to get line numbershoijui wrote:plese compile with DEBUG3
Re: crash in spring-HL, just compiled from git
Thanks for the debug3 (or 2) help.. I haven't been able to recreate the error though, will follow up if I do :)