Return-Path: X-Original-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 05DECD288 for ; Fri, 14 Sep 2012 17:26:47 +0000 (UTC) Received: (qmail 6412 invoked by uid 500); 14 Sep 2012 17:26:46 -0000 Delivered-To: apmail-incubator-flex-dev-archive@incubator.apache.org Received: (qmail 6384 invoked by uid 500); 14 Sep 2012 17:26:46 -0000 Mailing-List: contact flex-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-dev@incubator.apache.org Received: (qmail 6375 invoked by uid 99); 14 Sep 2012 17:26:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Sep 2012 17:26:46 +0000 X-ASF-Spam-Status: No, hits=-2.3 required=5.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of gosmith@adobe.com designates 64.18.1.191 as permitted sender) Received: from [64.18.1.191] (HELO exprod6og106.obsmtp.com) (64.18.1.191) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Sep 2012 17:26:35 +0000 Received: from outbound-smtp-2.corp.adobe.com ([193.104.215.16]) by exprod6ob106.postini.com ([64.18.5.12]) with SMTP ID DSNKUFNothVyqi8/8BlD+XSKJJBQt0/Au2DO@postini.com; Fri, 14 Sep 2012 10:26:15 PDT Received: from inner-relay-1.corp.adobe.com (inner-relay-1.sea.adobe.com [153.32.1.51]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id q8EHQCL1019745 for ; Fri, 14 Sep 2012 10:26:12 -0700 (PDT) Received: from nahub02.corp.adobe.com (nahub02.corp.adobe.com [10.8.189.98]) by inner-relay-1.corp.adobe.com (8.12.10/8.12.10) with ESMTP id q8EHQ8Ln011373 for ; Fri, 14 Sep 2012 10:26:11 -0700 (PDT) Received: from nambx05.corp.adobe.com ([10.8.189.124]) by nahub02.corp.adobe.com ([10.8.189.98]) with mapi; Fri, 14 Sep 2012 10:25:53 -0700 From: Gordon Smith To: "flex-dev@incubator.apache.org" Date: Fri, 14 Sep 2012 10:25:52 -0700 Subject: RE: Manifest-only JARs Thread-Topic: Manifest-only JARs Thread-Index: Ac2SUyrnQGHK7bG8T4Wtq4ZTjdxw8gASlIvQ Message-ID: <149F8129B58B2D418508E63117D9C5419B3A89C844@nambx05.corp.adobe.com> References: <149F8129B58B2D418508E63117D9C5419B3A89C71D@nambx05.corp.adobe.com> In-Reply-To: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Great, thank you! I've updated the wiki to say that we're using 1.7.1 for n= ow, and to show the build output with the -q switch, which is $ ant -q [echo] JFLEX_JAR is d:/jflex-1.4.3/jflex/lib/JFlex.jar [echo] Obtaining lib/antlr.jar [echo] Obtaining lib/commons-cli.jar [echo] Obtaining lib/commons-io.jar [echo] Obtaining lib/guava.jar [echo] Obtaining lib/jburg.jar [echo] Obtaining lib/lzma.jar [echo] Building lib/lzma.jar [echo] Deleting 'generated' directory [echo] Generating RawASTokenizer and RawASDocTokenizer [echo] Generating ASParser and ASTokenTypes [antlr] ANTLR Parser Generator Version 2.7.7 (20060906) 1989-2005 [antlr] ANTLR Parser Generator Version 2.7.7 (20060906) 1989-2005 [echo] Generating CmcEmitter [echo] Generating CSSLexer, CSSParser, and CSSTree [echo] Generating CSSEmitter [echo] Generating RawMXMLTokenizer [echo] Compiling Java code [echo] Creating generated/dist/sdk/lib/compiler.jar [echo] Creating generated/dist/sdk/lib/falcon-asc.jar [echo] Creating generated/dist/sdk/lib/falcon-mxmlc.jar [echo] Creating generated/dist/sdk/lib/falcon-compc.jar [echo] Creating generated/dist/sdk/lib/falcon-optimizer.jar [echo] Creating generated/dist/sdk/lib/falcon-swfdump.jar [echo] Creating lib/aet.jar [echo] Creating generated/dist/sdk/lib/flexTasks.jar [echo] Building support.swc [echo] compiler main completed on 09/14/2012 10:13:39 AM BUILD SUCCESSFUL Total time: 1 minute 16 seconds >From this you can see that the overall flow of the build is *Download the necessary third-party JAR files. *Generate Java-based lexer classes from JFlex .lex files, Java-based parser= classes from ANTLR .g files, and Java-based BURM classes from JBurg .jbg f= iles. *Compile the Java code (both the code that's in Subversion and the lexers/p= arsers/BURMs that are generated by the previous step). *Create the JAR files that are the Falcon deliverables. *Create a SWC file that needs to be used when compiling Flex with Falcon (b= ecause Falcon generates different code for CSS than the old compiler). - Gordon -----Original Message----- From: Raju Bitter [mailto:r.bitter.mailinglists@googlemail.com]=20 Sent: Friday, September 14, 2012 1:30 AM To: flex-dev@incubator.apache.org Subject: Re: Manifest-only JARs I did a quick test with various Ant versions. I see the warning in 1.7.0, b= ut don't see the warning with 1.7.1 or 1.8.x. - Raju