mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-14 08:17:35 +02:00
CC commands, not directories
This commit is contained in:
parent
ff94b013ab
commit
da0899b3e6
2 changed files with 6 additions and 6 deletions
|
@ -16,15 +16,15 @@ Features
|
|||
|
||||
- Added the `-CP`, `-CE`, and `-CL` compiler options to allow passing arbitrary flags to the C compiler:
|
||||
|
||||
> `-CP directory`
|
||||
> `-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 directory`
|
||||
> `-CE cc-commands`
|
||||
>
|
||||
> Specify a custom command line for the C compiler to compile an executable.
|
||||
>
|
||||
> `-CL directory`
|
||||
> `-CL cc-commands`
|
||||
>
|
||||
> Specify a custom command line for the C compiler to compile a library module.
|
||||
|
||||
|
|
|
@ -486,12 +486,12 @@
|
|||
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 directory Specify a custom command line for the C compiler to compile
|
||||
-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 directory Specify a custom command line for the C compiler to compile
|
||||
-CE cc-commands Specify a custom command line for the C compiler to compile
|
||||
an executable.
|
||||
-CL directory Specify a custom command line for the C compiler to compile
|
||||
-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.
|
||||
|
|
Loading…
Add table
Reference in a new issue