This commit is contained in:
Justin Ethier 2016-01-12 22:52:12 -05:00
parent 3774eab6aa
commit 4f71809b3d

View file

@ -83,6 +83,7 @@ Cyclone will not automatically generate libraries when compiling a program. Each
`cyclone` has the following command line options:
Option | Notes
------ | -----
`-t` | Show intermediate trace output in generated C files
`-d` | Only generate intermediate C files, do not compile them
`-h, --help` | Display usage information
@ -93,6 +94,7 @@ Option | Notes
The following files are generated during the Cyclone compilation process:
File Extension | Notes
-------------- | -----
`.meta` | These text files contain the expanded version of any macros exported by a Scheme library, and allow other modules to easily use those macros during compilation. This file is not generated when compiling a program.
`.c` | C code file generated by Cyclone.
`.o` | Object file generated by the C compiler from the corresponding `.c` file.