From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28641 invoked by alias); 10 Apr 2002 17:14:30 -0000 Mailing-List: contact java-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-owner@gcc.gnu.org Received: (qmail 28628 invoked from network); 10 Apr 2002 17:14:28 -0000 Received: from unknown (HELO nanostorm.dreammechanics.com) (209.217.80.28) by sources.redhat.com with SMTP; 10 Apr 2002 17:14:28 -0000 Received: (from aking@localhost) by nanostorm.dreammechanics.com (8.11.4/8.11.4) id g3AHC2D03068; Wed, 10 Apr 2002 13:12:02 -0400 Date: Wed, 10 Apr 2002 10:31:00 -0000 From: Adam King To: java@gcc.gnu.org Cc: adam@xwt.org Subject: MissingResourceException with Date under mingw port Message-ID: <20020410131202.C24689@dreammechanics.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-SW-Source: 2002-04/txt/msg00180.txt.bz2 Before the i686-pc-mingw32 taget for the cvs branch became uncompilable this morning, I was getting the following exception in my code. I narrowed it down to the following simple test: import java.util.Date; public class DateBug { public static void main( String[] args ) { System.out.println( (new Date()).toString() ); } } With the mingw port, I get: T:\>datebag Exception in thread "main" java.util.MissingResourceException: Bundle gnu.java.locale.Calendar not found It runs fine when compiled with the linux target. Am I missing a library I should be linking in? I compiled it with: i686-pc-mingw32-gcj --main=DateBug -o datebug.exe DateBug.java Adam