unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* Are source locations broken?
@ 2022-03-25 20:11 Jean Abou Samra
  2022-03-25 20:22 ` Maxime Devos
  0 siblings, 1 reply; 6+ messages in thread
From: Jean Abou Samra @ 2022-03-25 20:11 UTC (permalink / raw)
  To: guile-devel

Hi,

Please have a look at:

$ ./libguile/guile test.scm
;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
;;;       or pass the --no-auto-compile argument to disable.
;;; compiling /home/jean/Bureau/ENS-1A/dm_anac/test.scm
;;; <unknown-location>: warning: possibly unbound variable 
`unbound-variable'
;;; compiled 
/home/jean/.cache/guile/ccache/3.0-LE-8-4.6/home/jean/Bureau/ENS-1A/dm_anac/test.scm.go 

Backtrace:
[snipped]


Note the <unknown-location>. In LilyPond, I suddenly lost
all locations for compilation warnings when upgrading from
Guile 3.0.5 to 3.0.8. The above is with the main branch.





^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Are source locations broken?
  2022-03-25 20:11 Are source locations broken? Jean Abou Samra
@ 2022-03-25 20:22 ` Maxime Devos
  2022-03-25 20:27   ` Maxime Devos
  0 siblings, 1 reply; 6+ messages in thread
From: Maxime Devos @ 2022-03-25 20:22 UTC (permalink / raw)
  To: Jean Abou Samra, guile-devel

[-- Attachment #1: Type: text/plain, Size: 974 bytes --]

Jean Abou Samra schreef op vr 25-03-2022 om 21:11 [+0100]:
> Please have a look at:
> 
> $ ./libguile/guile test.scm
> ;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0
> ;;;       or pass the --no-auto-compile argument to disable.
> ;;; compiling /home/jean/Bureau/ENS-1A/dm_anac/test.scm
> ;;; <unknown-location>: warning: possibly unbound variable 
> `unbound-variable'
> ;;; compiled 
> /home/jean/.cache/guile/ccache/3.0-LE-8-4.6/home/jean/Bureau/ENS-1A/dm_anac/test.scm.go 
> 
> Backtrace:
> [snipped]
> 
> 
> Note the <unknown-location>. In LilyPond, I suddenly lost
> all locations for compilation warnings when upgrading from
> Guile 3.0.5 to 3.0.8. The above is with the main branch.

Here's a minimal reproducer:

$ cat trtr.scm:
> foo

$ guild compile trtr.scm
> <unknown-location>: warning: possibly unbound variable `foo'
> wrote `$HOME/.cache/guile/ccache/3.0-LE-8-4.6/$HOME/trtr.scm.go'

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Are source locations broken?
  2022-03-25 20:22 ` Maxime Devos
@ 2022-03-25 20:27   ` Maxime Devos
  2022-05-01 17:04     ` Olivier Dion via Developers list for Guile, the GNU extensibility library
  0 siblings, 1 reply; 6+ messages in thread
From: Maxime Devos @ 2022-03-25 20:27 UTC (permalink / raw)
  To: Jean Abou Samra, guile-devel

[-- Attachment #1: Type: text/plain, Size: 831 bytes --]

Maxime Devos schreef op vr 25-03-2022 om 21:22 [+0100]:
Here's a minimal reproducer:

$ cat trtr.scm:
> foo

$ guild compile trtr.scm
> <unknown-location>: warning: possibly unbound variable `foo'
> wrote `$HOME/.cache/guile/ccache/3.0-LE-8-4.6/$HOME/trtr.scm.go'

Curiously, it seems that source locations were actually recorded:

(define-syntax pk-the-source-location
  (lambda (s)
    (pk 'invocation (syntax-source s))
    (syntax-case s ()
      ((_ stuff)
       (pk 'use (syntax-source #'stuff))
       #'stuff))))

(lambda () (pk-the-source-location foo))

;;; [...]
;;; (invocation ((filename . "$HOME/trtr.scm") (line . 8) (column . 11)))

;;; (use ((filename . "$HOME/trtr.scm") (line . 8) (column . 35)))
;;; <unknown-location>: warning: possibly unbound variable `foo'
;;; compiled [...]


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Are source locations broken?
  2022-03-25 20:27   ` Maxime Devos
@ 2022-05-01 17:04     ` Olivier Dion via Developers list for Guile, the GNU extensibility library
  2022-05-01 18:03       ` Jean Abou Samra
  2022-05-01 18:27       ` Maxime Devos
  0 siblings, 2 replies; 6+ messages in thread
From: Olivier Dion via Developers list for Guile, the GNU extensibility library @ 2022-05-01 17:04 UTC (permalink / raw)
  To: Maxime Devos, Jean Abou Samra, guile-devel

On Fri, 25 Mar 2022, Maxime Devos <maximedevos@telenet.be> wrote:
> Maxime Devos schreef op vr 25-03-2022 om 21:22 [+0100]:
> Here's a minimal reproducer:
>
> $ cat trtr.scm:
>> foo
>
> $ guild compile trtr.scm
>> <unknown-location>: warning: possibly unbound variable `foo'
>> wrote `$HOME/.cache/guile/ccache/3.0-LE-8-4.6/$HOME/trtr.scm.go'

Any news on that bug?

-- 
Olivier Dion
oldiob.dev



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Are source locations broken?
  2022-05-01 17:04     ` Olivier Dion via Developers list for Guile, the GNU extensibility library
@ 2022-05-01 18:03       ` Jean Abou Samra
  2022-05-01 18:27       ` Maxime Devos
  1 sibling, 0 replies; 6+ messages in thread
From: Jean Abou Samra @ 2022-05-01 18:03 UTC (permalink / raw)
  To: Olivier Dion, Maxime Devos, guile-devel

Le 01/05/2022 à 19:04, Olivier Dion a écrit :
> Any news on that bug?


Last time I looked, it seemed that there had been an oversight with
source locations having changed representation (becoming 3-element
vectors instead of alists with symbol keys). But since the bugfix
patch I have submitted for curried definitions with docstrings has
received no reaction, I didn't want to invest time without much
hope that the effort would pay off :-(

Jean






^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Are source locations broken?
  2022-05-01 17:04     ` Olivier Dion via Developers list for Guile, the GNU extensibility library
  2022-05-01 18:03       ` Jean Abou Samra
@ 2022-05-01 18:27       ` Maxime Devos
  1 sibling, 0 replies; 6+ messages in thread
From: Maxime Devos @ 2022-05-01 18:27 UTC (permalink / raw)
  To: Olivier Dion, Jean Abou Samra, guile-devel

[-- Attachment #1: Type: text/plain, Size: 610 bytes --]

Olivier Dion schreef op zo 01-05-2022 om 13:04 [-0400]:
> On Fri, 25 Mar 2022, Maxime Devos <maximedevos@telenet.be> wrote:
> > Maxime Devos schreef op vr 25-03-2022 om 21:22 [+0100]:
> > Here's a minimal reproducer:
> > 
> > $ cat trtr.scm:
> > > foo
> > 
> > $ guild compile trtr.scm
> > > <unknown-location>: warning: possibly unbound variable `foo'
> > > wrote `$HOME/.cache/guile/ccache/3.0-LE-8-4.6/$HOME/trtr.scm.go'
> 
> Any news on that bug?

AFAICT, no news.  Also, I recommend to send bug reports to
bug-guile@gnu.org such that they appear in the bug tracker.

Greetings,
Maxime.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-05-01 18:27 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-25 20:11 Are source locations broken? Jean Abou Samra
2022-03-25 20:22 ` Maxime Devos
2022-03-25 20:27   ` Maxime Devos
2022-05-01 17:04     ` Olivier Dion via Developers list for Guile, the GNU extensibility library
2022-05-01 18:03       ` Jean Abou Samra
2022-05-01 18:27       ` Maxime Devos

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).