From 545909af6cec3e84334d66cdf99b8e614029b1a4 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 21 Feb 2017 18:47:02 -0500 Subject: [PATCH] Added missing command line options --- docs/User-Manual.md | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index e2d4f7e6..995388dc 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -96,15 +96,18 @@ Cyclone will not automatically generate libraries when compiling a program. Each `cyclone` has the following command line options: -Option | Notes ------- | ----- -`-A directory` | Append directory to the list of directories that are searched in order to locate imported libraries. -`-I directory` | Prepend directory to the list of directories that are searched in order to locate imported libraries. -`-Ox` | Optimization level, higher means more optimizations will be used. Set to 0 to disable optimizations. -`-d` | Only generate intermediate C files, do not compile them. This option will also show the C compiler commands that would have been used to compile the C file. -`-t` | Show intermediate trace output in generated C files -`-h, --help` | Display usage information -`-v` | Display version information +Option | Notes +------------------ | ----- +`-A directory` | Append directory to the list of directories that are searched in order to locate imported libraries. +`-I directory` | Prepend directory to the list of directories that are searched in order to locate imported libraries. +`-CP cc-commands` | Specify a custom command line for the C compiler to compile a program module. See `Makefile.config` for an example of how to construct such a command line. +`-CE cc-commands` | Specify a custom command line for the C compiler to compile an executable. +`-CL cc-commands` | Specify a custom command line for the C compiler to compile a library module. +`-Ox` | Optimization level, higher means more optimizations will be used. Set to 0 to disable optimizations. +`-d` | Only generate intermediate C files, do not compile them. This option will also show the C compiler commands that would have been used to compile the C file. +`-t` | Show intermediate trace output in generated C files +`-h, --help` | Display usage information +`-v` | Display version information ## Generated Files