diff options
author | wisberg <wisberg> | 2003-04-13 10:35:58 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2003-04-13 10:35:58 +0000 |
commit | e89f28372e58e7bbc21a885e6a8663e8fb439493 (patch) | |
tree | 963ae7fb9ec256de0288193f53a9ce70b10ab9c5 /docs | |
parent | 71f9df23257aa7395a641ee0bf03e449707fd5fb (diff) | |
download | aspectj-e89f28372e58e7bbc21a885e6a8663e8fb439493.tar.gz aspectj-e89f28372e58e7bbc21a885e6a8663e8fb439493.zip |
added fork and maxmem
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dist/doc/ant-ajc-task.html | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/docs/dist/doc/ant-ajc-task.html b/docs/dist/doc/ant-ajc-task.html index 422163d25..8376ac22c 100644 --- a/docs/dist/doc/ant-ajc-task.html +++ b/docs/dist/doc/ant-ajc-task.html @@ -104,7 +104,7 @@ array and may include another argfile by reference. This uses the Ant process for matching .java files and is not compatible with incremental mode. Unless using filters to limit the sources included, - use <code>sourceroots</code> instead. + use <code>sourceroots</code> instead. </td> <td ALIGN=CENTER VALIGN=TOP>No</td> </tr> @@ -206,6 +206,30 @@ Conflicts with <code>destdir</code>. <th colspan="3">Specifying compiler behavior</th> </tr> +<tr> + <td VALIGN=TOP>fork</td> + <td VALIGN=TOP>run process in another VM + (usually to specify memory or avoid locking any + jar files used on the classpath). + When set, this requires aspectjtools.jar be on the + system/Ant classpath, and only uses the aspectjtools.jar + to invoke the compiler (so nothing else on the + system/Ant classpath is included implicitly in + the compiler/user classpath). + Defaults to <tt>false</tt>. + </td> + <td ALIGN=CENTER VALIGN=TOP>No</td> + </tr> + +<tr> + <td VALIGN=TOP>maxmem</td> + <td VALIGN=TOP>The maximum memory to use for the new VM + when fork is true. Values should have the same form + as accepted by the VM, e.g., "128m". + </td> + <td ALIGN=CENTER VALIGN=TOP>No</td> + </tr> + <tr> <td VALIGN=TOP>incremental</td> <td VALIGN=TOP>incremental mode: |