From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Newsgroups: gmane.lisp.guile.user Subject: Re: Lilypond speed (was Re: How to make GNU Guile more successful) Date: Sun, 12 Mar 2017 22:42:10 +0100 Message-ID: <87wpbu18b1.fsf@gnu.org> References: <2e4e293e-618e-809a-2eff-31576319ea61@gmx.de> <874lzod28a.fsf@web.de> <6deb1610-e31b-b5c2-e9c9-95a2289af216@gmx.de> <87mvdfs6mh.fsf@web.de> <871sued8h7.fsf@fencepost.gnu.org> <87tw78sj34.fsf@web.de> <87h9369lz8.fsf_-_@pobox.com> <87r326bqc2.fsf@gnu.org> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1489354999 18699 195.159.176.226 (12 Mar 2017 21:43:19 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 12 Mar 2017 21:43:19 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) Cc: guile-user@gnu.org To: Thomas Morley Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Mar 12 22:43:14 2017 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cnBGc-0003Xc-5T for guile-user@m.gmane.org; Sun, 12 Mar 2017 22:43:06 +0100 Original-Received: from localhost ([::1]:48521 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cnBGi-0002Lb-0s for guile-user@m.gmane.org; Sun, 12 Mar 2017 17:43:12 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:41245) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cnBG3-0002H5-3v for guile-user@gnu.org; Sun, 12 Mar 2017 17:42:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cnBFl-0007e4-SC for guile-user@gnu.org; Sun, 12 Mar 2017 17:42:31 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:36276) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cnBFl-0007dt-JI; Sun, 12 Mar 2017 17:42:13 -0400 Original-Received: from reverse-83.fdn.fr ([80.67.176.83]:47756 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1cnBFk-00076a-Oj; Sun, 12 Mar 2017 17:42:13 -0400 X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 22 =?utf-8?Q?Vent=C3=B4se?= an 225 de la =?utf-8?Q?R?= =?utf-8?Q?=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu In-Reply-To: (Thomas Morley's message of "Sun, 12 Mar 2017 22:07:04 +0100") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.lisp.guile.user:13506 Archived-At: Thomas Morley skribis: > Let me add, I'd be interested in examples of cross-compiled > applications having already done so, as well. It boils down to having a makefile rule along the lines of: %.go: %.scm guild compile --target=3D"$(host)" -o $@ $< where $host is the cross-compilation target triplet, such as arm-linux-gnueaihf. See for an example. HTH, Ludo=E2=80=99.