Ats2 to c compiler
patsopt [<options>] [-o <file>] <specifications>...
patsopt is the compiler from ATS2 to C. It is most commonly invoked by patscc which is the preferred frontend for compiling ATS2 code. If no output filename is specified then the default is standard output. The output option -o <file> must be specified before any other specifications are given.
patsopt takes a number of commands with parameters to determine its behavior:
--depgen
Generate dependency lists.
--gline
Generate line pragma information in target code.
-h, --help
Print the usage information.
--taggen
Generate tagging information on syntactic entities.
-tc, --typecheck
Typecheck the given ATS source files, but go no further.
-v, --version
Show ATS2/Postiats version and gcc version.
patsopt takes a number of command-line specifications of the files it is to process.
-d, --dynamic <filenames>
Dynamically load the filenames.
-o, --output <filename>
Specify the output filename.
-s, --static <filenames>
Statically load the filenames.
patsopt -o test.c -d test.dats
Compile test.dats to a C file.
patsopt -tc -d test.dats
Typecheck test.dats only.
These programs are documented fully by The ATS2/Postiats user's manual available via the web at http://www.ats-lang.org/
patsopt was written by Hongwei Xi.
This manual page was written by Matthew Danish <[email protected]>, for the Debian project (and may be used by others).