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
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
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)
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
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