From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Paul Emsley Newsgroups: gmane.lisp.guile.user Subject: Re: Problem to compile g-wrap Date: Wed, 12 Oct 2011 14:26:38 +0100 Message-ID: <4E95958E.7010407@bioch.ox.ac.uk> References: <1317513190.5620.4.camel@german-desktop> <1317682734.5618.3.camel@german-desktop> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1318426017 2711 80.91.229.12 (12 Oct 2011 13:26:57 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 12 Oct 2011 13:26:57 +0000 (UTC) To: "guile-user@gnu.org" Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Wed Oct 12 15:26:53 2011 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RDypf-0001cr-RX for guile-user@m.gmane.org; Wed, 12 Oct 2011 15:26:52 +0200 Original-Received: from localhost ([::1]:40056 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDypf-0007iW-CA for guile-user@m.gmane.org; Wed, 12 Oct 2011 09:26:51 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:52074) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDypb-0007iR-M4 for guile-user@gnu.org; Wed, 12 Oct 2011 09:26:48 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RDypa-0006qC-TM for guile-user@gnu.org; Wed, 12 Oct 2011 09:26:47 -0400 Original-Received: from smtp7.freeserve.com ([80.12.242.2]:1271 helo=smtp6.freeserve.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RDypa-0006px-P3 for guile-user@gnu.org; Wed, 12 Oct 2011 09:26:46 -0400 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3j19.me.freeserve.com (SMTP Server) with ESMTP id 6FABC3000101 for ; Wed, 12 Oct 2011 15:26:44 +0200 (CEST) Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf3j19.me.freeserve.com (SMTP Server) with ESMTP id 631183000102 for ; Wed, 12 Oct 2011 15:26:44 +0200 (CEST) Original-Received: from [192.168.1.15] (unknown [95.147.114.204]) by mwinf3j19.me.freeserve.com (SMTP Server) with ESMTP id 39A423000101 for ; Wed, 12 Oct 2011 15:26:44 +0200 (CEST) X-ME-UUID: 20111012132644236.39A423000101@mwinf3j19.me.freeserve.com User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.23) Gecko/20110921 Lightning/1.0b2 Thunderbird/3.1.15 In-Reply-To: <1317682734.5618.3.camel@german-desktop> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.12.242.2 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:8855 Archived-At: On 03/10/11 23:58, Germ=C3=A1n Arias wrote: > I found the problem. the configuration say: > > checking size of size_t... 4 > checking size of ssize_t... 4 > checking for guile... /usr/local/bin/guile > checking for guile-config... /usr/local/bin/guile-config > checking for guile-tools... /usr/local/bin/guile-tools > checking libguile compile flags... -pthread > -I/usr/local/include/guile/2.0 -I/usr/local/include > checking libguile link flags... -L/usr/local/lib -lguile-2.0 -lgc > checking for guile-2.0... no > > > Why? the Guile libraries are just there. > >> >> Any advice? Thanks. > This (the final report line) is not checking the guile libraries, it is=20 checking that the guile you are using can be executed with or without a=20 version extension (GUILE_VERSIONED). I don't think that that is related=20 to the problem. It seems to me that you are compiling g-wrap too rigorously. Try=20 turning off -Wall, -Werror and/or -Werror-implicit-function-declaration i.e. in g-wrap/Makefile CFLAGS =3D -g -O2 -Wall -Wmissing-prototypes -Werror -std=3Dgnu99 -> CFLAGS =3D -g -O2 Paul.