From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tobin Harding Newsgroups: gmane.lisp.guile.devel Subject: getting started with guile dev Date: Wed, 22 Jun 2016 14:38:28 +1000 Message-ID: <20160622043828.GA23104@eros.local> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1466570360 7554 80.91.229.3 (22 Jun 2016 04:39:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 22 Jun 2016 04:39:20 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Jun 22 06:39:10 2016 Return-path: Envelope-to: guile-devel@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 1bFZwP-0004PG-Oq for guile-devel@m.gmane.org; Wed, 22 Jun 2016 06:39:05 +0200 Original-Received: from localhost ([::1]:55622 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFZwO-0006nF-Vx for guile-devel@m.gmane.org; Wed, 22 Jun 2016 00:39:05 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53952) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFZw9-0006nA-1y for guile-devel@gnu.org; Wed, 22 Jun 2016 00:38:49 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bFZw5-0003QB-NT for guile-devel@gnu.org; Wed, 22 Jun 2016 00:38:48 -0400 Original-Received: from out3-smtp.messagingengine.com ([66.111.4.27]:43114) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bFZw3-0003PO-6h for guile-devel@gnu.org; Wed, 22 Jun 2016 00:38:45 -0400 Original-Received: from compute6.internal (compute6.nyi.internal [10.202.2.46]) by mailout.nyi.internal (Postfix) with ESMTP id 8DA15204B4 for ; Wed, 22 Jun 2016 00:38:32 -0400 (EDT) Original-Received: from frontend2 ([10.202.2.161]) by compute6.internal (MEProxy); Wed, 22 Jun 2016 00:38:32 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=tobin.cc; h= content-type:date:from:message-id:mime-version:subject:to :x-sasl-enc:x-sasl-enc; s=mesmtp; bh=SOyslSQPx9V16UDJF/m1c2bEvBI =; b=DsMS/vi9Ijf4Hw/HgWWizCMRfeiH4pwUHxplpOwM1wzEZ+VwjiwoNQoBfc2 qFeF/fFry0SOBrl3qlvK1Ap/EO87Z2VWUR6D2c8D5j4aKEkDz4diEnNovUobQR7u YlqC+cHmrk379uNkFBN8Z9W9X7aQf9JMXrk/XOVwGhkwqRMg= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=SO yslSQPx9V16UDJF/m1c2bEvBI=; b=Ak9tS3iW8Nl1iui15uiffZO78vPMeYhbwM OSLr9T8j2aqbR/dZEzTEws1HgiFscFdS//ZFRk/WOhBH5hPyoFnbm16glxXNGdnU j5Db13ymF70ujB+NSP7Bm5e4oMCREzs/O+hrgnFUSE4k+uxKBI0f+RMxmyMz8OzX kuZbE9UPE= X-Sasl-enc: BA85wJna8Dku5RnkLoWMnLXX28x158i2YNwNZmxw5mjD 1466570311 Original-Received: from eros.local (ppp121-44-43-145.lns20.syd4.internode.on.net [121.44.43.145]) by mail.messagingengine.com (Postfix) with ESMTPA id 6C68ECCDA6 for ; Wed, 22 Jun 2016 00:38:31 -0400 (EDT) Content-Disposition: inline X-Mailer: Mutt 1.6.1 (2016-04-27) User-Agent: Mutt/1.6.1 (2016-04-27) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 66.111.4.27 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: "guile-devel" Xref: news.gmane.org gmane.lisp.guile.devel:18386 Archived-At: I am attempting to get started on some guile hacks. I am running Emacs, Geiser, Guile (2.0.11) for Scheme development. I have cloned the git repository for Guile (current commit d545e45). I can configure and build this tree. I can run the executable $ GUILE_TREE/libguile/guile --version guile (GNU Guile) 2.1.3.11-d545e-dirty Copyright (C) 2016 Free Software Foundation, Inc. My question is this, please, how to replace the system version with the fresh build. make install does not achieve this. Also I tried running $ GUILE_TREE/libguile/guile -L $GUILE_TREE/modules/ but that does not seem to load the new modules. thanks, Tobin Harding.