From 36261118a93b38b2c821ce065db463020a756359 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 28 Mar 2017 12:50:04 +0000 Subject: [PATCH] Document .so files --- docs/User-Manual.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index 19b3826a..a308f717 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -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. `.c` | C code file generated by Cyclone. `.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. ## Interpreter