From owner-freebsd-java@FreeBSD.ORG Tue Mar 20 16:23:53 2012 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 081111065670 for ; Tue, 20 Mar 2012 16:23:53 +0000 (UTC) (envelope-from bsd-src@helfman.org) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id C0F3A8FC17 for ; Tue, 20 Mar 2012 16:23:52 +0000 (UTC) Received: by dald2 with SMTP id d2so271452dal.13 for ; Tue, 20 Mar 2012 09:23:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:x-operating-system :organization:x-living-the-dream:x-pgp-fingerprint:x-pgp-key :user-agent:x-gm-message-state; bh=1x0qfGBu8omo+dUF5toVh+sfFtqUfZlXNYpRZKS+Gms=; b=cQ45Kn1iq/AKbqGeTU2ndXQZt1LNmr7nuJRhE9TWUCXDPg8va9HZgcmbOSGfI71DhV wET2K9y5XfQFQVsFCdbdoK+Ql0rvRgEZqFaCbogleBv3RkTaO6APP9reVBftem6wVj5L wFIwgw8/1Pbuf81QLl1vcDl9k3zWGAEtWAdBKT5vAT5HZqCVcQKaYjSjR+zgMD4ntAFB SwreIyPyUSjrwrkPBuD/aIJRH9XfcW6XDBw2Jq4KRY9+gTkWiYF5fofoYFiY0jxHyLpo wB0F2BYCeoQ0rtqppFT7OgU7AukeJVT4JTwOePOgsxwDTs8iMkAOhygI/pzVgKt+uQ3q Af8Q== Received: by 10.68.201.73 with SMTP id jy9mr2798365pbc.35.1332260632285; Tue, 20 Mar 2012 09:23:52 -0700 (PDT) Received: from dormouse.experts-exchange.com ([72.29.164.238]) by mx.google.com with ESMTPS id u5sm1591914pbu.76.2012.03.20.09.23.50 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 20 Mar 2012 09:23:51 -0700 (PDT) Sender: Jason Helfman Date: Tue, 20 Mar 2012 09:22:58 -0700 From: Jason Helfman To: Jung-uk Kim Message-ID: <20120320162258.GN46825@dormouse.experts-exchange.com> References: <20120318180225.GA51618@dormouse.experts-exchange.com> <201203191900.42677.jkim@FreeBSD.org> <20120319230818.GJ46825@dormouse.experts-exchange.com> <201203191945.50219.jkim@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <201203191945.50219.jkim@FreeBSD.org> X-Operating-System: FreeBSD 8.2-RELEASE amd64 Organization: The FreeBSD Project, http://www.freebsd.org X-Living-The-Dream: I love the SLO Life! X-PGP-FingerPrint: 8E0D C457 9A0F C91C 23F3 0454 2059 9A63 4150 D3DC X-PGP-Key: http://people.freebsd.org/~jgh/jgh.asc User-Agent: Mutt/1.5.21 (2010-09-15) X-Gm-Message-State: ALoCoQkWrXqpisOLQTuMZJxDTctPnIHpXlqUja2yyEuIs9JL/4w7NLzlMGQgdNWFvS4oacTdczyZ Cc: freebsd-eclipse@FreeBSD.org, freebsd-java@FreeBSD.org Subject: Re: [RFC] New Port: Eclipse Java Compiler, java/eclipse-ecj X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Mar 2012 16:23:53 -0000 On Mon, Mar 19, 2012 at 07:45:45PM -0400, Jung-uk Kim thus spake: >On Monday 19 March 2012 07:08 pm, Jason Helfman wrote: >> On Mon, Mar 19, 2012 at 07:00:39PM -0400, Jung-uk Kim thus spake: >> >Hmm... It doesn't seem right. >> > >> >% cat /usr/local/bin/ecj.sh >> >#!/bin/sh >> > >> >/usr/local/openjdk6/bin/javac -classpath >> > /usr/local/share/java/classes/ecj.jar $1 % /usr/local/bin/ecj.sh >> > -version >> >javac 1.6.0_30 >> >% /usr/local/openjdk6/bin/javac -version >> >javac 1.6.0_30 >> > >> >Please note it isn't coming from ecj.jar. >> >> That is grabbing the version of javac based on the shell script. > >Yes, that's exactly my point. :-) > >> I'm not certain if you can get a vesion of the jar with an >> argument, or if that argument is even valid. > >Of course, it is valid: > >% fetch >http://download.eclipse.org/eclipse/downloads/drops/R-3.7.2-201202080800/ecj-3.7.2.jar >ecj-3.7.2.jar 100% of 1708 kB 1851 >kBps >% /usr/local/openjdk6/bin/java -jar ecj-3.7.2.jar -version >Eclipse Compiler for Java(TM) 0.B83_R37x, 3.7.2, Copyright IBM Corp >2000, 2011. All rights reserved. From the bug I had opened, it was indicated that you can run this to get the same result: [jhelfman@dormouse.experts-exchange /usr/local/share/java/classes]$ java -cp ecj-3.7.2.jar org.eclipse.jdt.internal.compiler.batch.Main -version Eclipse Compiler for Java(TM) 0.B83_R37x, 3.7.2, Copyright IBM Corp 2000, 2011. All rights reserved. Here is a bit from the log of the bug: --- Comment #2 from Satyam Kandula 2012-03-20 11:48:50 EDT --- The Manifest.Mf is not including the main class! I will see what could be done here. Otherwise, you could try out %java -cp ecj.jar org.eclipse.jdt.internal.compiler.batch.Main -version I'll see if I can tune the shell script to output the same. -jgh -- Jason Helfman | FreeBSD Committer jgh@FreeBSD.org | http://people.freebsd.org/~jgh