Hi,

Roger Mason <[email protected]> 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’.

_______________________________________________
Skribilo-users mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/skribilo-users

Reply via email to