mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-06 20:56:36 +02:00
Update User-Manual.md
This commit is contained in:
parent
94828c7e1e
commit
747ea7ba5c
1 changed files with 6 additions and 6 deletions
|
@ -129,13 +129,13 @@ Option | Notes
|
||||||
|
|
||||||
The following files are generated during the Cyclone compilation process:
|
The following files are generated during the Cyclone compilation process:
|
||||||
|
|
||||||
File Extension | Install Required | Notes
|
File Extension | Installation Required | Notes
|
||||||
-------------- | ---------------- | -----
|
-------------- | ---------------- | -----
|
||||||
`.meta` | [x] | 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` | :heavy_check_mark: | 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` | [x] | Object file generated by the C compiler from the corresponding `.c` file.
|
`.o` | :heavy_check_mark: | Object file generated by the C compiler from the corresponding `.c` file.
|
||||||
`.so` | [x] | 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` | :heavy_check_mark: | 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) | [x] | Final executable file generated by the C compiler when compiling a program.
|
(None) | :heavy_check_mark: | 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 checked files above must be installed as well as the corresponding `.sld` file.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue