From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: Compiling for Android Date: Fri, 20 Jun 2014 12:16:41 +0200 Message-ID: <87ppi3ansm.fsf@gnu.org> References: <20140618215428.GA21875@mail.beuc.net> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1403259433 28577 80.91.229.3 (20 Jun 2014 10:17:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 20 Jun 2014 10:17:13 +0000 (UTC) Cc: guile-user@gnu.org To: beuc@beuc.net Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri Jun 20 12:17:08 2014 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WxvsZ-0008Bx-B6 for guile-user@m.gmane.org; Fri, 20 Jun 2014 12:17:07 +0200 Original-Received: from localhost ([::1]:39935 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxvsY-0008Bq-I1 for guile-user@m.gmane.org; Fri, 20 Jun 2014 06:17:06 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:46740) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxvsK-0008Be-LQ for guile-user@gnu.org; Fri, 20 Jun 2014 06:16:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxvsC-00067H-Gf for guile-user@gnu.org; Fri, 20 Jun 2014 06:16:52 -0400 Original-Received: from hera.aquilenet.fr ([2a01:474::1]:60185) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxvsB-00066j-P7 for guile-user@gnu.org; Fri, 20 Jun 2014 06:16:44 -0400 Original-Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 4B0D02E4A; Fri, 20 Jun 2014 12:16:42 +0200 (CEST) Original-Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id T+ye2AG80l3J; Fri, 20 Jun 2014 12:16:42 +0200 (CEST) Original-Received: from pluto (pluto.bordeaux.inria.fr [193.50.110.57]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 178ED275B; Fri, 20 Jun 2014 12:16:41 +0200 (CEST) X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 2 Messidor an 222 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0xEA52ECF4 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 83C4 F8E5 10A3 3B4C 5BEA D15D 77DD 95E2 EA52 ECF4 X-OS: x86_64-unknown-linux-gnu In-Reply-To: <20140618215428.GA21875@mail.beuc.net> (beuc@beuc.net's message of "Wed, 18 Jun 2014 23:54:28 +0200") User-Agent: Gnus/5.130009 (Ma Gnus v0.9) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a01:474::1 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:11292 Archived-At: Hello! beuc@beuc.net skribis: > Is there anybody working on compiling Guile for Android? Not that I know of. > Here are some notes when trying to compile stable-2.0. > > First important note: I had to move "AC_CHECK_LIB(m, cos)" (which btw > could be rewritten at LT_LIB_M()) before gl_INIT in configure.ac, > otherwise libunistring would fail to be detected. Could you send the config.log of the failing thing? I wasn=E2=80=99t aware of LT_LIB_M, thanks for the tip. > The compilation fails when libgc tries to use pthread features not > implemented under Android (btw ./configure was happy to start > compiling even if libgc wasn't present). Not sure where to go from > here, maybe other projects use libgc and already faced the issue? Does it work if libgc is configure with --disable-threads? > Which version of libgc do you recommend? 7.4.0 should be good. HTH, Ludo=E2=80=99.