gcc/libjava
Tom Tromey f70b7142c2 Locale.java (Locale): Don't explicitly check for null.
* java/util/Locale.java (Locale): Don't explicitly check for
	null.
	* java/util/Hashtable.java (containsKey): Don't explicitly check
	for null.
	(get): Likewise.
	* java/util/BitSet.java (and, or, xor): Don't explicitly check for
	null.
	* java/util/zip/ZipEntry.java (ZipEntry): Don't explicitly check
	for null.
	* java/text/StringCharacterIterator.java
	(StringCharacterIterator): Don't check for null.
	* java/text/ChoiceFormat.java (setChoices): Don't explicitly check
	for null pointer.
	* java/net/MulticastSocket.java (joinGroup): Don't explicitly
	check for null pointer.
	(leaveGroup): Likewise.
	* java/net/DatagramPacket.java (DatagramPacket): Removed erroneous
	comment.
	(setData): Likewise.
	* java/lang/ThreadGroup.java (ThreadGroup): Don't explicitly check
	for `p==null'.

From-SVN: r33671
2000-05-04 15:50:34 +00:00
..
doc
gcj re GNATS libgcj/212 (build is broken on Linux/Alpha) 2000-04-20 22:24:33 +00:00
gnu/gcj natFirstThread.cc (run): Initialize class before calling main. 2000-04-24 15:07:16 +00:00
include Runtime support for PR gcj/2: 2000-04-27 23:13:31 +00:00
java Locale.java (Locale): Don't explicitly check for null. 2000-05-04 15:50:34 +00:00
libltdl
scripts
testsuite Test for PR gcj/218: 2000-04-28 08:42:27 +01:00
acconfig.h
acinclude.m4
aclocal.m4
boehm.cc + 2000-04-22 Anthony Green <green@cygnus.com> + + * include/jvm.h (__builtin_expect): Define as unused for now. 2000-04-22 17:09:39 +00:00
ChangeLog Locale.java (Locale): Don't explicitly check for null. 2000-05-04 15:50:34 +00:00
ChangeLog-1999
chartables.pl
configure re GNATS libgcj/15 (_REENTRANT should be defined more consistently) 2000-04-21 20:46:11 +00:00
configure.host
configure.in re GNATS libgcj/15 (_REENTRANT should be defined more consistently) 2000-04-21 20:46:11 +00:00
COPYING
defineclass.cc
exception.cc
gij.cc
interpret.cc
jni.cc * jni.cc (_Jv_JNI_PopSystemFrame): Clear `env->ex'. 2000-04-20 17:39:30 +00:00
LIBGCJ_LICENSE
libgcj-test.spec.in
libgcj.spec.in re GNATS gcj/218 (Java executables can abort trying to access a null pointer in a leaf function) 2000-04-28 16:11:56 +00:00
libgcjdata.c
libtool-version
Makefile.am Makefile.am (GCJCOMPILE, [...]): Move -L option out of FLAGS. 2000-05-01 21:36:39 +00:00
Makefile.in Makefile.am (GCJCOMPILE, [...]): Move -L option out of FLAGS. 2000-05-01 21:36:39 +00:00
mauve-libgcj
name-finder.cc
NEWS
no-threads.cc
nogc.cc
posix-threads.cc
prims.cc Runtime support for PR gcj/2: 2000-04-27 23:13:31 +00:00
README
resolve.cc
THANKS
win32-threads.cc

This is libgcj: the runtime library for gcj, the GNU Compiler for Java. 
libgcj provides a partial implementation of the Java Class Libraries.

libgcj is free software.  See the file LIBGCJ_LICENSE for copying permission.


DOCUMENTATION
=============

All documentation, including detailed installation and usage instructions,
can be found on the gcj web pages at this URL:

		http://sourceware.cygnus.com/java/


REQUIREMENTS
============

libgcj must be built with a compatible version of the gcc compiler. libgcj
releases are usually numbered according to their corresponding gcc release.
For example, if this is "libgcj 2.95.3", you need to build it using "gcc
2.95.3".


QUICK INSTALLATION
==================

  > mkdir build
  > cd build
  > ../libgcj/configure --enable-threads=<THREADS_TYPE> --prefix=<DIR>
  > make
  > make install

where:

<THREADS_TYPE> specifies the threads library to be used by libgcj. Currently 
the possible values are "posix" and "none". This value must be the same as
the value used when configuring gcc itself.

<DIR> specifies the installation directory. This should be the same location 
as where gcc is installed.

Consult the gcj web pages for additional "configure" arguments.

NOTE: libgcj can not be built in the same directory as `configure'. You must 
create a separate build directory. 


BUGS
====

Please submit bug reports via this URL:

	http://sourceware.cygnus.com/cgi-bin/gnatsweb.pl?database=java