• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

doc/H11-Oct-2012-997945

gcj/H11-Oct-2012-1,4281,159

gnu/H11-Oct-2012-116,62987,799

include/H11-Oct-2012-10,6078,529

java/H11-Oct-2012-280,752109,376

javax/H11-Oct-2012-81,36226,850

jni/H11-Oct-2012-12,0587,700

libltdl/H07-May-2022-51,88142,608

org/H11-Oct-2012-12,1302,591

scripts/H11-Oct-2012-1,8461,412

sysdep/H11-Oct-2012-1,206732

testsuite/H11-Oct-2012-15,24411,392

COPYINGH A D11-Oct-201217.6 KiB341281

ChangeLogH A D11-Oct-2012653.4 KiB18,65815,546

ChangeLog-1999H A D11-Oct-2012243.9 KiB7,1095,487

ChangeLog-2001H A D11-Oct-2012332.5 KiB9,3367,539

HACKINGH A D11-Oct-20122.7 KiB6851

LIBGCJ_LICENSEH A D11-Oct-20121.2 KiB2722

Makefile.amH A D11-Oct-2012114.5 KiB3,0392,673

Makefile.inH A D11-Oct-2012233.7 KiB5,5385,203

NEWSH A D11-Oct-20121.4 KiB3524

READMEH A D11-Oct-20121.4 KiB5634

THANKSH A D11-Oct-20123.4 KiB107101

acconfig.hH A D11-Oct-201267 31

acinclude.m4H A D11-Oct-201210.5 KiB328285

aclocal.m4H A D11-Oct-201269.9 KiB1,9171,786

addr2name.awkH A D11-Oct-20121,022 4724

boehm.ccH A D11-Oct-201217.8 KiB614393

configureH A D11-Oct-2012277.6 KiB9,7828,011

configure.hostH A D11-Oct-20126.5 KiB256237

configure.inH A D11-Oct-201240 KiB1,2561,127

defineclass.ccH A D11-Oct-201242.5 KiB1,6701,183

exception.ccH A D11-Oct-201211.3 KiB396256

gij.ccH A D11-Oct-20124.5 KiB168130

glib-2.0.m4H A D11-Oct-20128 KiB213198

gtk-2.0.m4H A D11-Oct-20127.4 KiB197183

interpret.ccH A D11-Oct-201264.9 KiB3,2622,694

jni.ccH A D11-Oct-201275.3 KiB2,8102,167

libart.m4H A D11-Oct-20126.2 KiB169156

libgcj-test.spec.inH A D11-Oct-2012200 86

libgcj.pc.inH A D11-Oct-2012186 119

libgcj.spec.inH A D11-Oct-2012382 108

libtool-versionH A D11-Oct-2012249 76

mauve-libgcjH A D11-Oct-2012598 2521

no-threads.ccH A D11-Oct-2012878 3418

nogc.ccH A D11-Oct-20122.4 KiB168127

posix-threads.ccH A D11-Oct-201211.4 KiB462314

posix.ccH A D11-Oct-20124.1 KiB182136

prims.ccH A D11-Oct-201229.4 KiB1,192869

resolve.ccH A D11-Oct-201228.9 KiB1,110773

verify.ccH A D11-Oct-201287.5 KiB3,3982,694

win32-threads.ccH A D11-Oct-201210.1 KiB421287

win32.ccH A D11-Oct-201212.1 KiB474339

README

1This is libgcj: the runtime library for gcj, the GNU Compiler for Java.
2libgcj provides a partial implementation of the Java Class Libraries.
3
4libgcj is free software.  See the file LIBGCJ_LICENSE for copying permission.
5
6
7DOCUMENTATION
8=============
9
10All documentation, including detailed installation and usage instructions,
11can be found on the gcj web pages at this URL:
12
13		http://gcc.gnu.org/java/
14
15
16REQUIREMENTS
17============
18
19libgcj must be built with a compatible version of the gcc compiler. libgcj
20releases are usually numbered according to their corresponding gcc release.
21For example, if this is "libgcj 2.95.3", you need to build it using "gcc
222.95.3".
23
24
25QUICK INSTALLATION
26==================
27
28  > mkdir build
29  > cd build
30  > ../libgcj/configure --enable-threads=<THREADS_TYPE> --prefix=<DIR>
31  > make
32  > make install
33
34where:
35
36<THREADS_TYPE> specifies the threads library to be used by libgcj. Currently
37the possible values are "posix" and "none". This value must be the same as
38the value used when configuring gcc itself.
39
40<DIR> specifies the installation directory. This should be the same location
41as where gcc is installed.
42
43Consult the gcj web pages for additional "configure" arguments.
44
45NOTE: libgcj can not be built in the same directory as `configure'. You must
46create a separate build directory.
47
48
49BUGS
50====
51
52Please submit bug reports via this URL:
53
54	http://gcc.gnu.org/cgi-bin/gnatsweb.pl?database=gcc
55
56