X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com Date: Sun, 19 Feb 2017 22:51:31 +0100 (CET) From: Roland Lutz To: "Richard Rasker (rasker AT linetec DOT nl) [via geda-user AT delorie DOT com]" Subject: Re: [geda-user] Recent gschem-PCB import problem? In-Reply-To: <1487537662.3000.30.camel@linetec> Message-ID: References: <1487162236 DOT 3011 DOT 9 DOT camel AT linetec> <1487176819 DOT 3011 DOT 27 DOT camel AT linetec> <1487527066 DOT 3000 DOT 8 DOT camel AT linetec> <1487527653 DOT 3000 DOT 10 DOT camel AT linetec> <1487537662 DOT 3000 DOT 30 DOT camel AT linetec> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 19 Feb 2017, Richard Rasker (rasker AT linetec DOT nl) [via geda-user AT delorie DOT com] wrote: > Roland Lutz schreef op zo 19-02-2017 om 21:05 [+0100]: >> Does your version of Guile export the symbol scm_is_exact_integer? > > $ nm -D /usr/lib/libguile-2.0.so.22 | grep scm_is_exact_integer > [no grep match] > > So no, that symbol isn't exported. Ah, the problem is that scm_is_exact_integer has been introduced in Guile 2.0.10 [0]. I wasn't aware of that because I tested with Debian stable, and the current stable (jessie) has Guile 2.0.11. The fix for that would be to check for a more recent version of Guile; but that won't help you right now. You have one of the following options: 1. Comment out lines 28 and 29 in xorn/src/cpython/guile/scm2py.c. As far as I can see, it should still work without these. 2. Switch to the legacy version of the netlister. You can do so by adding (set! use-legacy-frontend #t) to your gnetlistrc file. 3. Upgrade to the next LTS release, Xenial Xerus. Either of these should fix it for you. Roland [0] https://lwn.net/Articles/590952/