summaryrefslogtreecommitdiff
path: root/java/guavac/pkg-descr
blob: 01ce6a37541684362d70974a5f19e3947f5318e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Guavac is a free java compiler developed under GNU Public Licence,
and its package includes guavad, java bitecode decompiler.

Guavac needs gcc-2.7.2 and libg++-2.7.1 or later version installed into
your FreeBSD system.

Preparation for using guavac and guavad (csh):
	setenv CLASSPATH .:/usr/local/share/guavac/classes.zip
	setenv LD_LIBRARY_PATH /usr/lib:/usr/local/lib

Preparation (sh):
	CLASSPATH=.:/usr/local/share/guavac/classes.zip
	LD_LIBRARY_PATH=/usr/lib:/usr/local/lib
	export CLASSPATH LD_LIBRARY_PATH

When you compile:
	guavac your_java_file.java

When you decompile
	guavad your_class_file.class

See more information at

	http://www.cs.berkeley.edu/~engberg/guavac/

or documents in the doc/ directory.

Yukihiro Nakai <Nakai@Mlab.t.u-tokyo.ac.jp>

WWW: http://www.cs.berkeley.edu/~engberg/guavac/