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 21:05:12 +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: <1487527653.3000.10.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> 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: > Traceback (most recent call last): > File "/usr/bin/gnetlist2", line 46, in > import xorn.guile > ImportError: /usr/lib/python2.7/dist-packages/xorn/guilemodule.so: > undefined symbol: scm_is_exact_integer This symbol should have been found in libguile-2.0.so.*. Either the library hasn't been loaded correctly, or you have an incompatible version of Guile. Which version(s) of Guile do you have installed? $ dpkg -l | grep guile Does guilemodule.so correctly reference the Guile shared library? $ ldd /usr/lib/python2.7/dist-packages/xorn/guilemodule.so | grep guile Does your version of Guile export the symbol scm_is_exact_integer? $ nm -D /usr/lib/x86_64-linux-gnu/libguile-2.0.so.22 | grep scm_is_exact_integer (If the second command returned a different path, please change the third command accordingly.)