From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2825 invoked by alias); 25 Jun 2013 14:15:13 -0000 Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org Received: (qmail 2776 invoked by uid 89); 25 Jun 2013 14:15:06 -0000 X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,SPF_PASS,TW_GC autolearn=ham version=3.3.1 Received: from mail-oa0-f53.google.com (HELO mail-oa0-f53.google.com) (209.85.219.53) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 25 Jun 2013 14:15:05 +0000 Received: by mail-oa0-f53.google.com with SMTP id k14so13386733oag.26 for ; Tue, 25 Jun 2013 07:15:04 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.60.142.197 with SMTP id ry5mr1116194oeb.119.1372169704415; Tue, 25 Jun 2013 07:15:04 -0700 (PDT) Received: by 10.76.23.36 with HTTP; Tue, 25 Jun 2013 07:15:04 -0700 (PDT) In-Reply-To: <51C9A53C.20409@redhat.com> References: <51C87C22.9030201@redhat.com> <51C88147.8060508@redhat.com> <51C9A389.6030000@redhat.com> <51C9A53C.20409@redhat.com> Date: Tue, 25 Jun 2013 14:15:00 -0000 Message-ID: Subject: Re: Trouble building gcj 4.8.1 From: Mike Hearn To: Andrew Haley Cc: GCC Java Content-Type: text/plain; charset=UTF-8 X-SW-Source: 2013-06/txt/msg00024.txt.bz2 > I'm trying to find out what you want to do to java.lang.String. Tell me > that, and we'll take it from there. At the moment, supporting the methods that take java.nio.Charset. I'm going to try and just hack it up with something like this: public String(byte[] data, int offset, int count, Charset encoding) throws UnsupportedEncodingException { init (data, offset, count, encoding.name()); } and then the same for getBytes(). But in general I anticipate that I'll continue to hit stubs or quirks in classpath so I'm trying to figure out how best to reach my goal, which will likely involve fixing up various things along the way. For instance, my first yak-shaving goal is to run the test suite for the core library of this app and then hack/fix until all the tests pass.