From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Nelson H. F. Beebe" Newsgroups: gmane.lisp.guile.bugs Subject: guile-1.8.8 problems on GNU/Linux AMD64 Date: Thu, 16 Dec 2010 12:59:04 -0700 (MST) Message-ID: NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1292564256 31337 80.91.229.12 (17 Dec 2010 05:37:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 17 Dec 2010 05:37:36 +0000 (UTC) Cc: beebe@math.utah.edu To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Fri Dec 17 06:37:30 2010 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PTT0U-0001l8-4Q for guile-bugs@m.gmane.org; Fri, 17 Dec 2010 06:37:30 +0100 Original-Received: from localhost ([127.0.0.1]:34000 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTSpo-0002rm-U8 for guile-bugs@m.gmane.org; Fri, 17 Dec 2010 00:26:29 -0500 Original-Received: from [140.186.70.92] (port=39697 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PTJyr-0007kj-G6 for bug-guile@gnu.org; Thu, 16 Dec 2010 14:59:14 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PTJyn-0005tc-2H for bug-guile@gnu.org; Thu, 16 Dec 2010 14:59:13 -0500 Original-Received: from mail.math.utah.edu ([155.101.98.135]:42879) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PTJym-0005tN-P8 for bug-guile@gnu.org; Thu, 16 Dec 2010 14:59:09 -0500 Original-Received: from psi.math.utah.edu (psi.math.utah.edu [155.101.96.19]) by mail.math.utah.edu (8.14.4/8.14.4) with ESMTP id oBGJx466025297; Thu, 16 Dec 2010 12:59:04 -0700 (MST) Original-Received: from psi.math.utah.edu (localhost [127.0.0.1]) by psi.math.utah.edu (8.14.4/8.14.4) with ESMTP id oBGJx4rS001113; Thu, 16 Dec 2010 12:59:04 -0700 (MST) Original-Received: (from beebe@localhost) by psi.math.utah.edu (8.14.4/8.14.4/Submit) id oBGJx4t7001111; Thu, 16 Dec 2010 12:59:04 -0700 (MST) X-US-Mail: "Department of Mathematics, 110 LCB, University of Utah, 155 S 1400 E RM 233, Salt Lake City, UT 84112-0090, USA" X-Telephone: +1 801 581 5254 X-FAX: +1 801 585 1640, +1 801 581 4148 X-URL: http://www.math.utah.edu/~beebe X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0 (mail.math.utah.edu [155.101.98.135]); Thu, 16 Dec 2010 12:59:04 -0700 (MST) X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-Mailman-Approved-At: Fri, 17 Dec 2010 00:26:21 -0500 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:4906 Archived-At: A build of guile-1.8.8 on GNU/Linux AMD64 fails because the included libtool is overriding library paths, and supplying incorrect 32-bit paths: % env CC=gcc CXX=g++ LDFLAGS="-L/usr/local/lib64 -Wl,-rpath,/usr/local/lib64" ./configure && make ... libtool: link: gcc -g -O2 -Wall -Wmissing-prototypes -Werror -Wl,-rpath -Wl,/usr/local/lib64 -o gen-scmconfig gen-scmconfig.o -L/usr/local/lib64 /usr/local/lib/libgmp.so -lcrypt -lm /usr/local/lib64/libltdl.so -ldl -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib64 -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib64 /usr/local/lib/libgmp.so: could not read symbols: File in wrong format collect2: ld returned 1 exit status I tried replacing -lgmp with /usr/local/lib64/libgmp.so in Makefiles, and that got somewhat further: % find . -name Makefile | xargs sed -i -e 's@-lgmp@/usr/local/lib64/libgmp.so@' % make all check ... PASS: stack-limit-calibration.scm ============= 1 test passed ============= ... PASS: test-scm-with-guile =================== All 16 tests passed =================== ... Running ports.test UNRESOLVED: ports.test: port-for-each: passing freed cell Running posix.test ... Running socket.test ERROR: socket.test: AF_INET6/SOCK_STREAM: bind/sockaddr - arguments: ((wrong-type-arg #f "Wrong type: ~S" (#(10 1 9998 0 0)) (#(10 1 9998 0 0)))) ERROR: socket.test: AF_INET6/SOCK_STREAM: connect/sockaddr - arguments: ((wrong-type-arg #f "Wrong type: ~S" (#(10 1 8889 0 0)) (#(10 1 8889 0 0)))) At that point, the tests hang in a wait state, without any CPU consumption, so I killed the build. ------------------------------------------------------------------------------- - Nelson H. F. Beebe Tel: +1 801 581 5254 - - University of Utah FAX: +1 801 581 4148 - - Department of Mathematics, 110 LCB Internet e-mail: beebe@math.utah.edu - - 155 S 1400 E RM 233 beebe@acm.org beebe@computer.org - - Salt Lake City, UT 84112-0090, USA URL: http://www.math.utah.edu/~beebe/ - -------------------------------------------------------------------------------