From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 3485 invoked from network); 23 Sep 2023 01:12:18 -0000 Received: from 9front.inri.net (168.235.81.73) by inbox.vuxu.org with ESMTPUTF8; 23 Sep 2023 01:12:18 -0000 Received: from mail-lf1-f44.google.com ([209.85.167.44]) by 9front; Fri Sep 22 21:10:48 -0400 2023 Received: by mail-lf1-f44.google.com with SMTP id 2adb3069b0e04-5041bb9ce51so4889349e87.1 for <9front@9front.org>; Fri, 22 Sep 2023 18:10:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1695431446; x=1696036246; darn=9front.org; h=content-transfer-encoding:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=YRLdQgxaIy/J3jbY5eg7NDpSM31TVXCe0cV22ep6Z54=; b=L9Xgeo846iKBmfWUexmWcDAsVmLi+pRsguCmDaPp+lOJJYwalKpbmBfmcOiRREWdMs ajMIpKybea6rrwbbVpUfrRFvx0Rx0yBFZnNHC2FqZiYSUCzsfzbXFV8Edju4qeFTFAin N+mDCZ5iZv9bLwcP3Ljs0LHJqXoqJz+6zR4kKKlcR+DQH5pJGl8Z3Risv6xwJqrA+8VC 9kMx9r4ZewaqHoBubpjNxthHK+pgFN0VJa/GBT/2udFO3chfRhgYa5jwUswbRYABlQwq REaK4w7v7LxITtPTud+d1mkAdGzWWchzeT7rlDM+5d1OGohOsd9qwRCdvA1+uT0N55vm QZZw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1695431446; x=1696036246; h=content-transfer-encoding:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=YRLdQgxaIy/J3jbY5eg7NDpSM31TVXCe0cV22ep6Z54=; b=ZRWmVytuRJuPf+ws0vNT7MlXlxWJM32Jc6AhodOKJ8MWOGaY2ZL+FYlYXWhCCzZksJ 6KxXSC+sHhArg0Djv92aemyOIhBv7jLFgN6AzWb70oLyRSZ8533XRhIpjTcWrdXIpRaQ bkiA30AZGPei2h8MWo6B+UwovZIUbZNAQd+nPRg5BFoc0lbbhoaGIwz//oASOaOZc0G/ kRgaatcSfrvBcibBJehyigx9Lw4V8VWedMMLMDPtfOTKEavuQ+QqXx6d/EUqkEmA/Ctr +Srfbub/uiltKRpnnX6a0T13bgEuHEIOy9XZuf1ltVXRykMm+aXSbY/nBSKViySMcZ5v JBOA== X-Gm-Message-State: AOJu0Yw8RH/vREbAQYTTwWilFYd7HjELcdesk6QRRGLf5UlcIjiGq8D9 Fe4+eyCobZpxuIorOQQgRxcIcbpRJo1h68o0C91ta+Fm X-Google-Smtp-Source: AGHT+IH2Vwo5RlKurEcetkXvBOOY16YciuZySP0Ky0N/TLJokTWwHUqBl1HXDGDY7+PrN4XtGrfXdBNWQxQ5wx0KejI= X-Received: by 2002:ac2:4bcd:0:b0:4ff:9efd:8a9e with SMTP id o13-20020ac24bcd000000b004ff9efd8a9emr892472lfq.7.1695431445670; Fri, 22 Sep 2023 18:10:45 -0700 (PDT) MIME-Version: 1.0 References: <8ea3b9d6-c797-179b-cf09-860ebbb4ade5@sdf.org> In-Reply-To: <8ea3b9d6-c797-179b-cf09-860ebbb4ade5@sdf.org> From: Amavect Date: Fri, 22 Sep 2023 20:10:29 -0500 Message-ID: To: 9front@9front.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: mobile deep-learning reduce/map markup Subject: Re: [9front] 9Front Drawterm Code 139 Sig 11 SIGSEGV Reply-To: 9front@9front.org Precedence: bulk On Fri, Sep 22, 2023 at 2:21=E2=80=AFPM Dmad wrote: > Let me know if anyone has any advice on how to debug/troubleshoot. > > Really appreciate your time, beat the shit out of the internet trying to > find an answer on the lists/forums/etc. Do you know how to get a backtrace with gdb or any other debugger? For gdb, just pass the executable filename, type r to run. Trigger the crash, and type bt for a backtrace. Additionally, you can recompile with "-O0 -ggdb" in the CFLAGS. If that changes the behavior, that's a hint as to what's wrong. Thanks, Amavect