[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [skribilo-users] segfault with 0.9.2
From: |
Ludovic Courtès |
Subject: |
Re: [skribilo-users] segfault with 0.9.2 |
Date: |
Thu, 16 Aug 2012 15:16:27 +0200 |
User-agent: |
Gnus/5.130005 (Ma Gnus v0.5) Emacs/24.1 (gnu/linux) |
Hi,
Roger Mason <address@hidden> skribis:
> I have a file that compiles fine on FreeBSD with 0.9.1 but segfaults
> on linux with 0.9.2.
Can you get a backtrace of Guile with GDB for the latter? Basically,
have it dump a core (run “ulimit -c unlimited”), then run:
$ gdb `which guile` core
and from GDB:
bt full
Let me know if you need more help.
> skribilo -g -t latex -o paper.ltx paper.skb
>
> gives:
>
> paper.skb: only one input file at a time
That’s because ‘-g’ takes an argument. So ‘-t’ is considered to be an
argument of ‘-g’, and then ‘latex’ is considered to be an input file
name.
Instead, you would need something like this:
skribilo -g3 -t latex -o paper.ltx paper.skb
Thanks,
Ludo’.