mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
Document .so files
This commit is contained in:
parent
e7aa82a156
commit
36261118a9
1 changed files with 1 additions and 0 deletions
|
@ -123,6 +123,7 @@ 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.
|
`.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.
|
`.c` | C code file generated by Cyclone.
|
||||||
`.o` | Object file generated by the C compiler from the corresponding `.c` file.
|
`.o` | Object file generated by the C compiler from the corresponding `.c` file.
|
||||||
|
`.so` | 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) | Final executable file generated by the C compiler when compiling a program.
|
(None) | Final executable file generated by the C compiler when compiling a program.
|
||||||
|
|
||||||
## Interpreter
|
## Interpreter
|
||||||
|
|
Loading…
Add table
Reference in a new issue