X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=dn/8K8XZi19Ah990dX/rP438fkxE/nASH7i+HHS3a3M=; b=s6GfKWVO70z455GH5XISE509fyCxF5W+81/wWpwC21kCrUJrdtfQEc8jwmKN2xt92m a84l3bC4OGscdSTgWu73jg0miJT6yrOUeEcv1hT7elBEnBXW+n0JTNRwriKH5DHLVxmd xiL+R+Tjto13sI2k8qQF+ojB7csImxsX+s4y48cVQa2FVwFGDLBqTfD0vfKD2KZ0Sr/N PUh8BICjxTLpGUis6SiEKa/dSiUoAyhCjWXdH06+dT+2LELQMvcA5HelvNrrTUREJbn5 fvlUT0RgRUi46/jzuLDpOvdUtWsIt8/VwT3LPQ/5Jw7CBVrLLKzzFi70PJ+iHk1/rB7x u1IQ== X-Received: by 10.152.197.35 with SMTP id ir3mr3599451lac.54.1389354573682; Fri, 10 Jan 2014 03:49:33 -0800 (PST) Date: Fri, 10 Jan 2014 15:49:14 +0400 From: Vladimir Zhbanov To: geda-user AT delorie DOT com Subject: Re: [geda-user] Suppress NC nodes from netlist? Message-ID: <20140110114914.GA5170@localhost.localdomain> Mail-Followup-To: geda-user AT delorie DOT com References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) 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 Thu, Jan 09, 2014 at 04:38:35PM -0800, Frank Miles wrote: > (gschem-gnetlist newbie here...) > > I'd like to suppress 'not connected' nodes from the gnetlist output. These have > NC symbols attached in gschem. Is there some simple way that I'm oblivious to? > Or is this possible in a newer gnetlist and not mine? Thanks! > > -Frank > > (running the old gnetlist that's in Debian/testing: Debian's version 1.6.2-4.3 .) Internally, gnetlist evaluates each and every connection. I created a small test schematic with some component pins connected to nc-left.sym and did: for i in $(gnetlist --list-backends|grep -v "backends\|^$"); do gnetlist -g $i -o $i.net 1.sch done For each pin connected in such a way, all backends that worked without errors output single pin nets. Of course, some refdes based netlists (e.g. spice-sdb) don't care. I use the recent version compiled from git, and AFAIK, there is no gnetlist option to ignore connections to no-connect symbols. As Gabriel said, this is probably a bug, so you can file a bug report. And if you just want to not see nets for some unnecessary pins in your netlist, just don't connect them anywhere.