From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Newsgroups: gmane.lisp.guile.user Subject: Re: [EXT] Option to create statically linked binaries Date: Wed, 29 Dec 2021 22:22:56 +0100 Message-ID: References: <4c029e88-d7ac-d294-a3dc-447b5be742b8@disroot.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5oM1Erp5azmDhLhb" Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="9447"; mail-complaints-to="usenet@ciao.gmane.io" To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Wed Dec 29 22:23:36 2021 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n2gQ4-0002Ii-28 for guile-user@m.gmane-mx.org; Wed, 29 Dec 2021 22:23:36 +0100 Original-Received: from localhost ([::1]:50700 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1n2gQ2-0004zZ-Cp for guile-user@m.gmane-mx.org; Wed, 29 Dec 2021 16:23:34 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:45950) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n2gPX-0004zR-O7 for guile-user@gnu.org; Wed, 29 Dec 2021 16:23:03 -0500 Original-Received: from mail.tuxteam.de ([5.199.139.25]:35952) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1n2gPV-0001O9-HL for guile-user@gnu.org; Wed, 29 Dec 2021 16:23:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tuxteam.de; s=mail; h=From:In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:To:Date:Sender:Reply-To:Cc:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=IJAVIy/2d2CxynDgHCtdZkLulzws9bxZmrfj4zia5QY=; b=twyqrdQK8J3v5DZj9MLSRCniXT rhV81Ks2WM9QnF2mkoeIXc6hjGUJy+C7lV6E9ympT7YJ9bOGhA94STaIICUcLpHdFavaFbjsJcB1s 69TcmoAEC34QY6vyfkEh0+y63aqXTZtpf2nt7BZFm1qSzLRDfVRszr5YW59i7qiEas6hM53yd1t7C BhVXa3PPuW5dgf/zuNFhQa9b8tryY9xevXH2Z7t+z7VDng2u3YAN3/GyfjNZ6HESThXIc/Olx10OT ZQiu+GdHRGaRkkl3ddUwuN4aZVuyl46ihP5sCCYdWiz1RRcOAp6b9N5ru666gSGb+cdl+J7fRC6X6 aMKQ7l/w==; Original-Received: from tomas by mail.tuxteam.de with local (Exim 4.94.2) (envelope-from ) id 1n2gPQ-0000pF-TQ for guile-user@gnu.org; Wed, 29 Dec 2021 22:22:56 +0100 Content-Disposition: inline In-Reply-To: Received-SPF: pass client-ip=5.199.139.25; envelope-from=tomas@tuxteam.de; helo=mail.tuxteam.de X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 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-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:17935 Archived-At: --5oM1Erp5azmDhLhb Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 29, 2021 at 02:52:20PM -0500, Thompson, David wrote: > Hi Sai, >=20 > On Wed, Dec 29, 2021 at 1:14 PM Sai Karthik wrote: > > > > Hello everyone! I'm new to guile. I am exploring the language since a > > couple of days. It would be nice to have option to produce such binaries > > for programs built using guile (like with golang & some more langs). >=20 > That is not possible. Guile is currently dependent upon having a > bytecode interpreter installed on the machine that is running Guile > programs. The good news is that native compilation is something that > the Guile maintainers have planned for the future, which would enable > things like self-contained binaries. On top of that, GNU libc is (at least in parts, libnss I think) dynamically linked anyway, AFAIK. My hunch is that Guile's core depends on GNU libc. Cheers --=20 t --5oM1Erp5azmDhLhb Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCYczRsAAKCRAFyCz1etHa RqKcAJ9DlUgsKF4FO7aXeAOOWn4i4FUTYQCfTwWy3NW2hlRIZBUALFo+59Y8MHc= =FbAQ -----END PGP SIGNATURE----- --5oM1Erp5azmDhLhb--