From: wisberg
Date: Tue, 4 Mar 2003 04:31:08 +0000 (+0000)
Subject: 1.1 release language and polish
X-Git-Tag: v1_1_0_RC1~72
X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3406fe84071084f3b7c7ee84acd680a461cc7c5d;p=aspectj.git
1.1 release language and polish
---
diff --git a/docs/dist/doc/ant-tasks.html b/docs/dist/doc/ant-tasks.html
index de3e5929a..6c855e062 100644
--- a/docs/dist/doc/ant-tasks.html
+++ b/docs/dist/doc/ant-tasks.html
@@ -59,7 +59,7 @@ the "resource" attribute to specify the default names:
resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
The current resource file retains the name "ajc" for the Ajc10 task,
-using "iajc" for the AspectJ 1.1 task.
+and uses "iajc" for the AspectJ 1.1 task.
This may change in the final release of AspectJ 1.1.
For more information on using Ant, please refer to
@@ -73,7 +73,7 @@ This should permit those with existing build scripts using
the Ajc Ant task to continue using the same scripts
when compiling with 1.1.
-This will list any use of options no longer supported
+This will list any use of options no longer supported in 1.1
(e.g., fork, lenient, strict, workingdir, preprocess, usejavac,...),
and does not provide access to the new features of AspectJ 1.1.
(Developers using AspectJ 1.1 only should
@@ -127,14 +127,14 @@ exists, the build will complete. Messages are printed as usual.
<target name="compile" >
<mkdir dir="dest" />
- <inc-ajc destdir="dest"
+ <iajc destdir="dest"
tagfile="tagfile.txt"
sourceroots="src${path.separator}testsrc" >
<!-- declare classes needed to compile the target files -->
<classpath>
<pathelement location="${home.dir}/tools/aspectj/lib/aspectjrt.jar"/>
</classpath>
- </inc-ajc>
+ </iajc>
</target>
</project>
@@ -192,8 +192,7 @@ directly on the command line.
If the problem occurs on the command line also, then the problem is
not in the task.
-(It may be in the tools; please send bug reports, but only if the code
-is pure-Java.)
+(It may be in the tools; please send bug reports.)
If the problem does not occur on the command line,
@@ -205,20 +204,22 @@ from Ant, then please send a report (including your build file, if possible).Known Problems
For the most up-to-date information on known problems, see the
- bug database.
-
+ bug database
+ for unresolved
+ compiler bugs
+ or
+ taskdef bugs.
+
Memory and forking:
Users email most often about the ajc task running out of memory. This is
not a problem with the task; some compiles take a lot of memory,
-often more than the same compiles using javac.
+often more than similar compiles using javac.
+
Forking is not supported in this release, so the only solution is to
increase the memory available to Ant (see the Ant documentation, searching for ANT_OPTS,
the variable they use in their scripts to pass VM options, e.g., ANT_OPTS=-Xmx128m).
+
Messages suppressed: In the incremental task,
messages from the compiler are printed but not segregated.
@@ -228,7 +229,7 @@ You can send email to
mailto:aspectj-users@dev.eclipse.org.
(Do join the list to participate!) We also welcome any bug reports; you can
submit them to the bug database at
-http://dev.eclipse.org
+http://dev.eclipse.org/bugs
using the AspectJ
product and Ant
component.