aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/antlr-ant/main/antlr3-task/Readme.txt
blob: 1b8d2e7aab2711498f8c595cf1bb1bc0b85adacd (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
 Changes:
 
 19.08.2008
 Dependency check for composed grammars added.
 Might need some further improvements.
 
 09.08.2008
 Inspecting environment variable ANTLR_HOME to detect and add
 antlr- and stringtemplate libraries to the classpath
 
 09.08.2008
 Removed routine checkGenerateFile. It got feeble with the
 introduction of composed grammars, e.g. "import T.g".
 From now one it is always antlr itself via the depend option
 which decides about dependecies
 
 31.12.2007
 With option "depend=true" proceed even if first pass failed so
 that ANTLR can spit out its errors

 31.12.2007 
 Support the -Xconversiontimeout option (Jim Idle)

 21.10.2007
 Evaluation of dependencies via ANTLRs 'depend' option.
 Added noprune and nocollapse option.
 'grammar parser' will be recognized.
 
 17.05.2007
 Adapted the grammar type recognition to the changed naming conventions for tree parsers.
 Compiled the antlr3 taks with -source 5 -target 5 for compatibility with Java 5.
 Dropped trace, tracelexer and traceparser options as they are not supported by antlr any more.
 Added depend and dbgST options.
 Added project "SimpleTreeWalker" as an example for a multi grammar project.
 
 How to build the antlr3 task:
 
 Prerequisites:
 1) apache-ant-1.7.0 installed
 2) antlr jar files (antlr-3.1b1.jar, antlr-2.7.7.jar and stringtemplate-3.1b1.jar) 
    contained in the CLASSPATH environment variable
 3) Java 5 or Java 6 installed
    
 javac -source 5 -target 5 -classpath C:/Programme/apache-ant-1.7.0/lib/ant.jar org/apache/tools/ant/antlr/ANTLR3.java
 jar cvf antlr3.jar org/apache/tools/ant/antlr/antlib.xml org/apache/tools/ant/antlr/ANTLR3.class
 
 a) d2u.tp
 
 Simple example on how to use the antlr3 task with ant
 
 b) simplecTreeParser.tp
 
 Example on how to build a multi grammar project with ant.
 
 c) polydiff_build.zip
 
 Example build file for polydiff example grammar added.
 
 d) composite-java_build.zip
 
  Example build file for composite-java example grammar added