X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=P8cZmnUOSJ1jT+caLTohVtdl8WHDcLQaBx+poMX3K7Q=; b=N2KaD16Z36biJjIvULz2oPNSpK4RchgwSSXTrzjbzPa/h3y4kk8Nz2lXgbuLK3TiO+ BdN+XD+jNbn9nfVlbxNVUgaaL4uywlOIRAQBO07veEeAz0WHo6AhL+4Ipqh0LWD1PuCD be39OM7+Y7yrTJ670yGk/1nIvOVdKJxffYvVAsk5yhWwdzeJf4CcWlzLWjGTIEyCC9mh TM1tLpbVWDF4Ua8XbunFUw08cBBU5GT5E4nH5ao5Wa9rIiWnsH9NfEWWpGidVnduYrfh eLo2jRzoxbDwLk1onQ9pjq3Da5BgiLwab5gs1u1OzL6okHt2mGZD1nU3l8ChtbRiBzlo 6uEQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=P8cZmnUOSJ1jT+caLTohVtdl8WHDcLQaBx+poMX3K7Q=; b=TGkQ4EaQ6apoNcFWEOd2Tp9ToXsZRDQGmeXkJMTo+F6lCZ7pd/QxVMJ5INGT79biau qdqDAlVL8p1EkAgOw29LDMNENaMubX2Yh+FlUMD1q1ZwKasXgwt9tDUXFli6ND2g0KxA ShxhTYotpA9sLSWIL+c9jZKhA1YOkNFrnewM959m0Fqzwa/NA0TcJIUdbAFNNV2KGdPT YwEZHoJIOOuEZnKV9tNJeW/8leuWH4edOYryH0MbHTN5WkeYInwmG0GZXGR95aU9uFXR JHZ8g+3jNdj372W2CGNuz4/LbriJMvW8JVV0v27tYIT987/wnA7dbUinrmzzzZHNSWC1 z0ZA== X-Gm-Message-State: ALyK8tKUm10Ve2ra6mQu2HWKLh7bI7kzlQTlI3HSRLvjC8NIwp/MNwfWdOiWeDxyqM6lntx52E5JK5xy/bcv1g== X-Received: by 10.31.166.20 with SMTP id p20mr16730317vke.2.1468825515326; Mon, 18 Jul 2016 00:05:15 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <0e645e32-dda6-7762-a528-78c019331c4f AT ecosensory DOT com> <6647c170-2564-b2f8-5ee8-94cce01b26ec AT ecosensory DOT com> <20160714152917 DOT GA15540 AT localhost DOT localdomain> <18b0d745-7657-a81d-0807-f634651ea6fa AT ecosensory DOT com> <5ca33aba-b993-d578-13bc-a11365005bf7 AT ecosensory DOT com> <20160714163205 DOT GC4347 AT localhost DOT localdomain> <5c03765c-8ade-919f-6e1c-f1a831a67901 AT ecosensory DOT com> From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com]" Date: Mon, 18 Jul 2016 10:05:14 +0300 Message-ID: Subject: Re: [geda-user] can now run gschem, but odd differences(Guile problems?) To: geda-user AT delorie DOT com Content-Type: text/plain; charset=UTF-8 Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On 7/17/16, John Griessen (john AT ecosensory DOT com) [via geda-user AT delorie DOT com] wrote: > I set my environment like this: > export GUILE_LOAD_PATH="/usr/local/share/gEDA/scheme" Hmm, it should not be necessary. All necessary paths are added on the ./configure stage and gschem should be aware of them. Try to set it to "" and see if it works. ... > Is all this use of /home/john/.cache/guile/ccache/2.0-LE-8-2.0 > the new normal? Yes, guile compiles recently changed files by default to accelerate their execution. There is the flag --no-auto-compile which can be used to prevent this. Another option is setting of GUILE_AUTO_COMPILE to 0. See guile info manual for more information. Though I believe you don't have to do it because it would make the guile interpreter slower. > > What is the best set of dirs to use for GUILE_LOAD_PATH="????" > ? There is no need to set it unless you install some third-party program that recommends this (usually to make developer's life easier when struggling with autotools).