[go: up one dir, main page]

File: README.Debian

package info (click to toggle)
sablevm 1.11.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 6,980 kB
  • ctags: 7,922
  • sloc: ansic: 116,013; sh: 8,679; makefile: 489
file content (25 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download
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
 NOTES ON ANT 1.6 USAGE
========================

* Ant 1.5 is not supported due to bug in GNU Classpath's implementation of
  zip compression classes (getting into an infinite loop). Ant 1.6 works,
  as it has own implementation of these.

* If you use 'java-sablevm' then Ant 1.6 should basically "just work" because
  it does the following things:

    1. Adds /usr/share/java/gnujaxp.jar to classpath -- needed for regular
       expresions which are used to analyze build.xml file,

    2. Sets BOOTCLASSPATH to /usr/share/sablevm/sablevm-classpath -- needed
       because ANT is very Sun-centric and does not pass our boot.class.path
       to jikes properly (yes, you should use jikes w/ SableVM); fortunatelly
       jikes allows us to set this environmental variable.

  This means that if you use 'java-sablevm' you DO NOT NEED to do the above
  operations by hand.
  
* But if you want to use 'sablevm' command directly, then you should take care
  of setting classpath right and BOOTCLASSPATH environmental variable as
  described above.  This is only needed in situations, like when you want to
  use ant1.6 calling it directly, "by hand".