runtest.sh
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
源码类别:

编译器/解释器

开发平台:

Others

  1. #
  2. # Demonstrate how to subclass a grammar and actually get it to compile.
  3. # Biggest issue is making sure ANTLR, compiler, and interpreter can see
  4. # the supergrammar and classes needed by it.  In this case, the subgrammar
  5. # uses the supergrammar's lexer; it must be visible for the compiler and
  6. # interpreter.
  7. #
  8. # If you put a lexer here in this dir, you would not need all this
  9. # classpath crap.
  10. #
  11. java antlr.Tool -glib "../tinyc/tinyc.g" subc.g
  12. javac -classpath '/usr/local/src/jdk117_v3/lib/classes.zip:.:../tinyc:/home/parrt/depot/code/org.antlr/test/antlr-2.7.0a11' *.java
  13. #
  14. # have to change the next classpath to point to your 2.6.0 directory not mine.
  15. #
  16. java -classpath '/usr/local/src/jdk117_v3/lib/classes.zip:.:../tinyc:/home/parrt/depot/code/org.antlr/test/antlr-2.7.0a11' Main < input.c