Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread wolf
On 2023-02-02 17:35:33 +0100, Fabrizio Bianchi wrote: > salve. Ho letto il vostro messaggio. > Purtroppo non capisco quale sia il problema. > Provi a sentire la community. Ho installato dal sito FSF.org il guile 3.0.9 > bianchi fabrizio Sorry, I don't speak Italian(?), so I have no idea what this

Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread wolf
On 2023-02-02 17:39:50 +0100, Jean Abou Samra wrote: > On 02/02/2023 17:11, Wolf wrote: > > Hello, > > > > I'm having a problem of getting borderline useless stack traces from a > > script > > executed via a shebang. For example, let's consider following script: > > > > $ cat /tmp/x.scm > >

Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread Fabrizio Bianchi
$ sudo apt-get install guile-3.0 bianchi fabrizio Il giorno gio 2 feb 2023 alle ore 17:35 Fabrizio Bianchi < fabriziobianch...@gmail.com> ha scritto: > salve. Ho letto il vostro messaggio. > Purtroppo non capisco quale sia il problema. > Provi a sentire la community. Ho installato dal sito FSF.o

Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread Fabrizio Bianchi
Dal terminale ho eseguito il seguente comando apt-get install guile-3.0. bianchi fabrizio Il giorno gio 2 feb 2023 alle ore 17:35 Fabrizio Bianchi < fabriziobianch...@gmail.com> ha scritto: > salve. Ho letto il vostro messaggio. > Purtroppo non capisco quale sia il problema. > Provi a sentire l

Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread Jean Abou Samra
On 02/02/2023 17:11, Wolf wrote: > Hello, > > I'm having a problem of getting borderline useless stack traces from a script > executed via a shebang. For example, let's consider following script: > > $ cat /tmp/x.scm > #!/bin/sh > exec guile --no-auto-compile -e main -s "$0" "$@" >

Re: How to get better stack trace from a script executed via shebang?

2023-02-02 Thread Fabrizio Bianchi
salve. Ho letto il vostro messaggio. Purtroppo non capisco quale sia il problema. Provi a sentire la community. Ho installato dal sito FSF.org il guile 3.0.9 bianchi fabrizio Il giorno gio 2 feb 2023 alle ore 17:13 Wolf ha scritto: > Hello, > > I'm having a problem of getting borderline useless

How to get better stack trace from a script executed via shebang?

2023-02-02 Thread Wolf
Hello, I'm having a problem of getting borderline useless stack traces from a script executed via a shebang. For example, let's consider following script: $ cat /tmp/x.scm #!/bin/sh exec guile --no-auto-compile -e main -s "$0" "$@" !# (define (main args) (foo))