More tweaks

This commit is contained in:
Justin Ethier 2020-05-16 19:17:44 -04:00
parent 8653472d7c
commit af0fff86d0

View file

@ -134,13 +134,13 @@ The following files are generated during the Cyclone compilation process:
File Extension | Install Required | Notes File Extension | Install Required | Notes
-------------- | ---------------- | ----- -------------- | ---------------- | -----
`.meta` | <ul><li>- [x]</li></ul> | 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. `.meta` | Yes | 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. `.c` | | C code file generated by Cyclone.
`.o` | <ul><li>- [x]</li></ul> | Object file generated by the C compiler from the corresponding `.c` file. `.o` | Yes | Object file generated by the C compiler from the corresponding `.c` file.
`.so` | <ul><li>- [x]</li></ul> | Shared Object files generated by the C compiler from the corresponding `.c` file. These are only generated for Scheme libraries and are used to allow loading a library at runtime. `.so` | Yes | Shared Object files generated by the C compiler from the corresponding `.c` file. These are only generated for Scheme libraries and are used to allow loading a library at runtime.
(None) | <ul><li>- [x]</li></ul> | Final executable file generated by the C compiler when compiling a program. (None) | Yes | Final executable file generated by the C compiler when compiling a program.
When installing a library, all of the checked files above must be installed as well as the corresponding `.sld` file. When installing a library, all of the files indicated above must be installed as well as the corresponding `.sld` file.
## Interpreter ## Interpreter