Re: [Sdcc-user] Global float + increment -> segfault

2013-02-26 Thread Daniel Michalik
On Mon, Feb 25, 2013 at 10:27:55PM +0100, Raphael Neider wrote: > > Caught signal 11: SIGSEGV > > I could not resist: Fixed in r8444. Tracked as bug #3605966. Raphael, thanks so much! I am confirming that this fixes the issue. //Daniel

Re: [Sdcc-user] Global float + increment -> segfault

2013-02-25 Thread Raphael Neider
Hi, > I am trying to compile the following piece of code with the command > sdcc -mpic14 -p16f1938 --use-non-free problem.c [snip] > I run into a segfault: > Caught signal 11: SIGSEGV I could not resist: Fixed in r8444. Tracked as bug #3605966. Best regards, Raphael

Re: [Sdcc-user] Global float + increment -> segfault

2013-02-24 Thread Daniel Michalik
On Mon, Feb 25, 2013 at 12:08:17AM +0100, Daniel Michalik wrote: > I am attaching the output of strace sdcc -mpic14 -p16f1938 --use-non-free > problem.c. Attachment. execve("/usr/local/bin/sdcc", ["sdcc", "--use-non-free", "-mpic14", "-p16f1938", "problem.c"], [/* 47 vars */]) = 0 brk(0)

Re: [Sdcc-user] Global float + increment -> segfault

2013-02-24 Thread Daniel Michalik
On Mon, Feb 25, 2013 at 12:08:17AM +0100, Daniel Michalik wrote: > Dear sdcc community, > > I am trying to compile the following piece of code with the command > sdcc -mpic14 -p16f1938 --use-non-free problem.c I realize I forgot to specify my sdcc version, built from svn, configured with --enabl

[Sdcc-user] Global float + increment -> segfault

2013-02-24 Thread Daniel Michalik
Dear sdcc community, I am trying to compile the following piece of code with the command sdcc -mpic14 -p16f1938 --use-non-free problem.c #define __16f1938 #include "pic14/pic16f1938.h" float julianday = 0; void main(void) { julianday++; } I run into a segfault: Caught signal 11: SIGSEG