From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.devel Subject: Re: Build Error in Master Date: Wed, 07 Mar 2012 21:46:59 -0500 Message-ID: <87aa3rvmfw.fsf@netris.org> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1331174978 11702 80.91.229.3 (8 Mar 2012 02:49:38 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 8 Mar 2012 02:49:38 +0000 (UTC) Cc: guile-devel To: Noah Lavine Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Mar 08 03:49:37 2012 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1S5TQ6-0003XY-UU for guile-devel@m.gmane.org; Thu, 08 Mar 2012 03:49:35 +0100 Original-Received: from localhost ([::1]:37304 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5TQ6-00062j-D0 for guile-devel@m.gmane.org; Wed, 07 Mar 2012 21:49:34 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:37241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5TPl-00060P-DQ for guile-devel@gnu.org; Wed, 07 Mar 2012 21:49:32 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S5TPf-0003gb-VI for guile-devel@gnu.org; Wed, 07 Mar 2012 21:49:12 -0500 Original-Received: from world.peace.net ([96.39.62.75]:49062) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S5TPf-0003eh-Rk for guile-devel@gnu.org; Wed, 07 Mar 2012 21:49:07 -0500 Original-Received: from 209-6-91-212.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.91.212] helo=yeeloong) by world.peace.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1S5TPZ-0000ki-6S; Wed, 07 Mar 2012 21:49:01 -0500 In-Reply-To: (Noah Lavine's message of "Wed, 7 Mar 2012 21:23:07 -0500") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.92 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 96.39.62.75 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:14055 Archived-At: Hi Noah, Noah Lavine writes: > When building the latest git master, I get this error: > > GUILEC language/tree-il/compile-glil.go > Assertion failed: (table->n_items < size), function rob_from_rich, > file weak-table.c, line 252. > > Has weak-table.c changed recently? This is just a guess, but the recent elisp branch merge renumbered many of the VM instructions. After I recompiled the C files, Guile failed ungracefully with mysterious errors. Deleting all of the .go files and recompiling them fixed the problem for me. I found this a bit surprising, because the elisp merge _did_ bump the SCM_OBJCODE_MINOR_VERSION in _scm.h from 0 to 1. I would have expected that to force recompilations of the older .go files, but apparently it doesn't. Regards, Mark