unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
From: "pelzflorian (Florian Pelz)" <pelzflorian@pelzflorian.de>
To: David Pirotte <david@altosw.be>
Cc: guile-user <guile-user@gnu.org>
Subject: Re: GNU G-Golf 0.8.0-rc-3 available for testing
Date: Thu, 02 May 2024 20:50:21 +0200	[thread overview]
Message-ID: <87ikzwdp5e.fsf@pelzflorian.de> (raw)
In-Reply-To: <20240430215102.2f6f74b7@tintin> (David Pirotte's message of "Tue, 30 Apr 2024 21:51:02 -0300")

Hi David.  I’m trying to find the true error location.  Could you tell
me if, when you run such commands in guile in your Debian setup, you
get similar output?  First with tracepoint:


scheme@(guile-user)> (load "/home/florian/src/g-golf/examples/gtk-4/drawing-widget.scm")                             
scheme@(guile-user)> ,tracepoint (@@ (g-golf hl-api closure) g-closure-marshal)                                      
Trap 0: Tracepoint at #<procedure g-closure-marshal (g-closure return-val n-param param-vals invocation-hint marshal-data)>.
scheme@(guile-user)> (main '("guile"))
Trap 0: (g-closure-marshal #<pointer 0x1b9defc0> #<pointer 0x0> 1 #<pointer?> ?)

(guile:8143): Gtk-WARNING **: 20:34:10.905: Unable to acquire the address of the accessibility bus: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files. If you are attempting to run GTK without a11y support, GTK_A11Y should be set to 'none'.
Trap 0: no values
Segmentation fault


Then with break:

scheme@(guile-user)> (load "/home/florian/src/g-golf/examples/gtk-4/drawing-widget.scm")                             
scheme@(guile-user)> ,break (@@ (g-golf hl-api closure) g-closure-marshal)                                           
Trap 0: Breakpoint at #<procedure g-closure-marshal (g-closure return-val n-param param-vals invocation-hint marshal-data)>.
scheme@(guile-user)> (main '("guile"))
Trap 0: Breakpoint at #<procedure g-closure-marshal (g-closure return-val n-param param-vals invocation-hint marshal-data)>
Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c092a0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c0e1a0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c200e0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c2bdb0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c2f600 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c38000 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c4ba80 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c51530 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c67f70 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c77c30 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c82ee0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c90fc0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c90320 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93c9e480 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93ca7940 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93cb9420 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93ccaad0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93cd68a0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93cddab0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93cf9a30 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d022e0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d087e0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d1d9a0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d32a40 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d3b310 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d4a6c0 g-closure-marshal>
scheme@(guile-user) [1]> ,next

(guile:9520): Gtk-WARNING **: 20:46:01.854: Unable to acquire the address of the accessibility bus: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files. If you are attempting to run GTK without a11y support, GTK_A11Y should be set to 'none'.
Step into #<frame ffff93d50640 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Step into #<frame ffff93d690f0 g-closure-marshal>
scheme@(guile-user) [1]> ,next
Segmentation fault

Regards,
Florian



  parent reply	other threads:[~2024-05-02 18:50 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-17  5:56 GNU G-Golf 0.8.0-rc-3 available for testing David Pirotte
2024-04-17 22:30 ` pelzflorian (Florian Pelz)
2024-04-18 22:21   ` David Pirotte
2024-04-19 17:00     ` pelzflorian (Florian Pelz)
2024-04-20  4:51       ` David Pirotte
2024-04-20  8:35         ` pelzflorian (Florian Pelz)
2024-04-30 17:51         ` pelzflorian (Florian Pelz)
2024-05-01  0:51           ` David Pirotte
2024-05-01  8:17             ` pelzflorian (Florian Pelz)
2024-05-07  1:39               ` David Pirotte
2024-05-07  9:36                 ` pelzflorian (Florian Pelz)
2024-05-07 23:53                   ` David Pirotte
2024-05-08 10:49                     ` pelzflorian (Florian Pelz)
2024-05-08 21:51                       ` David Pirotte
2024-05-02 18:50             ` pelzflorian (Florian Pelz) [this message]
2024-05-02 21:57               ` David Pirotte
2024-05-03  5:00                 ` David Pirotte
2024-05-03 11:35                 ` pelzflorian (Florian Pelz)
2024-05-04  5:59                   ` David Pirotte
2024-05-04 14:31                     ` pelzflorian (Florian Pelz)
2024-05-04 18:08                       ` pelzflorian (Florian Pelz)
2024-05-04 22:11                         ` David Pirotte
2024-05-04 22:23                         ` David Pirotte
2024-05-04 21:39                       ` David Pirotte
2024-05-05  1:43                         ` pelzflorian (Florian Pelz)
2024-05-05 21:30                           ` David Pirotte
2024-05-06  9:45                             ` pelzflorian (Florian Pelz)
2024-05-06  9:53                         ` Basile Starynkevitch
2024-05-06 13:08                           ` pelzflorian (Florian Pelz)
2024-05-03  0:17           ` David Pirotte

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/guile/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87ikzwdp5e.fsf@pelzflorian.de \
    --to=pelzflorian@pelzflorian.de \
    --cc=david@altosw.be \
    --cc=guile-user@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).