Return-Path: Delivered-To: apmail-db-derby-dev-archive@www.apache.org Received: (qmail 41794 invoked from network); 21 Aug 2006 23:26:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Aug 2006 23:26:18 -0000 Received: (qmail 73025 invoked by uid 500); 21 Aug 2006 23:26:18 -0000 Delivered-To: apmail-db-derby-dev-archive@db.apache.org Received: (qmail 72995 invoked by uid 500); 21 Aug 2006 23:26:18 -0000 Mailing-List: contact derby-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: Delivered-To: mailing list derby-dev@db.apache.org Received: (qmail 72984 invoked by uid 99); 21 Aug 2006 23:26:18 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Aug 2006 16:26:18 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [68.142.198.207] (HELO smtp108.sbc.mail.mud.yahoo.com) (68.142.198.207) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 21 Aug 2006 16:26:16 -0700 Received: (qmail 25852 invoked from network); 21 Aug 2006 23:25:55 -0000 Received: from unknown (HELO ?127.0.0.1?) (ddebrunner@sbcglobal.net@75.23.154.245 with plain) by smtp108.sbc.mail.mud.yahoo.com with SMTP; 21 Aug 2006 23:25:54 -0000 Message-ID: <44EA40FC.3080804@apache.org> Date: Mon, 21 Aug 2006 16:25:48 -0700 From: Daniel John Debrunner User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en, de MIME-Version: 1.0 To: derby-dev@db.apache.org Subject: Re: LineNumber table in class files and sane=false strangeness References: <44EA3B59.2020907@apache.org> In-Reply-To: <44EA3B59.2020907@apache.org> X-Enigmail-Version: 0.90.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Daniel John Debrunner wrote: > If I remove PermissionsCatalogRowFactory.class and recompile just using > ant from the top level then it reverts to 2116 bytes in the first codeline. > > Doing a ant clobber followed by an ant -verbose all in the first > codeline reveals this as the only entry for that class. > > [javac] > org\apache\derby\impl\sql\catalog\PermissionsCatalogRowFactory.java > omitted as > org/apache/derby/impl/sql/catalog/PermissionsCatalogRowFactory.class is > up to date. > > So I assume something else is compiling it indirectly with a different > -g flag, that doesn't match my sane=false setting, any ideas? Doing this provides a consistent build (thanks Andrew): ant clobber ant insanse ant all Looking at the previous verbose output for a full build shows all the compiles had just -g, not -g:none. Maybe just setting the ant property 'sane=false' is no longer enough, one one needs to run 'ant insane'? It does seem my codeline was in a half insane, half sane mode. Dan.