From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Andy Wingo Newsgroups: gmane.lisp.guile.devel Subject: Re: GNU Guile 2.9.8 Released [beta] Date: Tue, 07 Jan 2020 22:42:48 +0100 Message-ID: <871rsb54fb.fsf@pobox.com> References: <87woaa3rq4.fsf@pobox.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="93017"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) Cc: Andy Wingo , guile-devel To: Stefan Israelsson Tampe Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jan 07 22:43:25 2020 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iowdG-000KKF-Ue for guile-devel@m.gmane.org; Tue, 07 Jan 2020 22:43:23 +0100 Original-Received: from localhost ([::1]:56268 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iowdF-00082C-HT for guile-devel@m.gmane.org; Tue, 07 Jan 2020 16:43:21 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:41857) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iowd1-000822-1g for guile-devel@gnu.org; Tue, 07 Jan 2020 16:43:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iowcz-0003qp-Ur for guile-devel@gnu.org; Tue, 07 Jan 2020 16:43:06 -0500 Original-Received: from fanzine.igalia.com ([178.60.130.6]:40923) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iowcz-0003n3-9X for guile-devel@gnu.org; Tue, 07 Jan 2020 16:43:05 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:References:Subject:Cc:To:From; bh=qvqV4eCGVDu/+v4/OkLQggNsGveZ5XrCV83+y+i/7bM=; b=V3tINQICDXcmMVXXC+uGPN3hGsHTQI43byciihOij4xP5pKvxAZcKMynARojhDfk7+eRzesDD5/94pwwaznGlczWb+vsGa+LB5wLgBDRSPI07Xbzs4j4v8lEvxV+FedNgoOXBjuPotIkx9tQUjNvZglx3NkYnP6gOwv74aooWTPZ74zqU4Y9H60+ca0HNiFVzYmtfcp1CQGFjvqLknJH19L/TbaplQkSPw6I8H7WuRkt6NU1GU88ZNfRSIeFw+mViI5nTKCdjxqa7EIB5KVyKnFZo08kGHHdbX4bP3WSWS/lD+PmM1J/XyVrBUsjk3cXTiiixOyAJ0vYx9fjNSvO/Q==; Original-Received: from [88.123.12.110] (helo=sparrow) by fanzine.igalia.com with esmtpsa (Cipher TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim) id 1iowct-0001gY-2X; Tue, 07 Jan 2020 22:42:59 +0100 In-Reply-To: (Stefan Israelsson Tampe's message of "Tue, 7 Jan 2020 21:00:00 +0100") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 178.60.130.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.23 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" Xref: news.gmane.org gmane.lisp.guile.devel:20240 Archived-At: On Tue 07 Jan 2020 21:00, Stefan Israelsson Tampe writes: > Bump! > > Great, but loading an extension like: > > (catch #t > (lambda () > (throw #t) > (load-extension "libguile-persist" "persist_init") (pk 1)) > (lambda x > (let ((file > (%search-load-path "src/.libs/libguile-persist.so"))) > (if > file > (catch #t > (lambda () > (load-extension file "persist_init")) > (lambda x > (warn > "libguile-persist is not loadable!"))) > (warn > "libguile-persist is not present, did you forget to make it?"))))) > > And then have line like > > (pk 5 serialize-vm-ra) > > Loading this module prints > (5 #f) > > Worked in releases before. Surely this test case can be shortened? All the load-extension bits appear to not be necessary, right? Andy