From: Doni Pracner Date: Thu, 23 Jan 2014 22:25:57 +0000 (+0100) Subject: txt about the compiler X-Git-Tag: v0.1.4~5 X-Git-Url: http://svarog.pmf.uns.ac.rs/gitweb/?p=mjc2wsl.git;a=commitdiff_plain;h=e59b5cca30d9da6f739b9e728d1ed269f897b47b txt about the compiler --- diff --git a/lib/compiler.txt b/lib/compiler.txt new file mode 100644 index 0000000..7171aac --- /dev/null +++ b/lib/compiler.txt @@ -0,0 +1,49 @@ +MicroJava Compiler +================== + +About MicroJava +--------------- + +MicroJava is a simple language made by H. Mössenböck for a Compiler Construction +course. It is not the same as Java Micro Edition (JavaME) used on mobile +phones. + +More about the course, the language and its VM: +http://www.ssw.uni-linz.ac.at/Misc/CC/ + +The site for the Serbian version of the course: +http://perun.pmf.uns.ac.rs/kurbalija/Teaching/kk.htm + + +About the compiler and runner +----------------------------- + +The source files for a functional MJ compiler are given in the compiler-src +folder. These are heavily based on the source templates that are used in +the Compiler Construction classes and finished by students during the +course. + +The original source templates were written by Moessenboeck and are available +on the sites given above, though there are posible updates. The version +given has the compiler finished by a student, and a few additional changes +(such as the optional decoding while writeing to file). + + +Usage +----- + +An ant build script can be found in the root folder of the project and it +includes (among others) tasks for building the sources, as well as using +the compiler and runner. + +Otherwise calls can be made with: + +java MJ.Compiler [-print] +java MJ.Run [-d] + +There is also a Decoder available: + +java MJ.Decode + +You might want to include the "compiler-bin" into your CLASSPATH, or just +use "-cp compiler-bin" in the command line.