mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-04 03:36:34 +02:00
Added missing command line options
This commit is contained in:
parent
34b352ad95
commit
545909af6c
1 changed files with 12 additions and 9 deletions
|
@ -96,15 +96,18 @@ Cyclone will not automatically generate libraries when compiling a program. Each
|
||||||
|
|
||||||
`cyclone` has the following command line options:
|
`cyclone` has the following command line options:
|
||||||
|
|
||||||
Option | Notes
|
Option | Notes
|
||||||
------ | -----
|
------------------ | -----
|
||||||
`-A directory` | Append directory to the list of directories that are searched in order to locate imported libraries.
|
`-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.
|
`-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.
|
`-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.
|
||||||
`-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.
|
`-CE cc-commands` | Specify a custom command line for the C compiler to compile an executable.
|
||||||
`-t` | Show intermediate trace output in generated C files
|
`-CL cc-commands` | Specify a custom command line for the C compiler to compile a library module.
|
||||||
`-h, --help` | Display usage information
|
`-Ox` | Optimization level, higher means more optimizations will be used. Set to 0 to disable optimizations.
|
||||||
`-v` | Display version information
|
`-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
|
## Generated Files
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue