Added -COPT

This commit is contained in:
Justin Ethier 2021-01-18 17:02:37 -05:00
parent 5ad0f6fa68
commit 0fc99d96d3

View file

@ -116,6 +116,7 @@ Option | Notes
`-CE cc-commands` | Specify a custom command line for the C compiler to compile an executable. `-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. `-CL cc-commands` | Specify a custom command line for the C compiler to compile a library module.
`-CS cc-commands` | Specify a custom command line for the C compiler to compile a shared object module. `-CS cc-commands` | Specify a custom command line for the C compiler to compile a shared object module.
`-COPT options` | Specify custom options to provide to the C compiler, EG: \"-Imy-directory\".
`-CLNK option` | Specify a custom command to provide as a linker option, EG: "-lcurl". `-CLNK option` | Specify a custom command to provide as a linker option, EG: "-lcurl".
`-Ox` | Optimization level, higher means more optimizations will be used. Set to 0 to disable optimizations. `-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. `-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.