cmd/v: rename reuse-tmpc to keepc
parent
1891f55c72
commit
13948152b6
|
@ -122,7 +122,7 @@ const (
|
||||||
'-parallel',
|
'-parallel',
|
||||||
'-x64',
|
'-x64',
|
||||||
'-W',
|
'-W',
|
||||||
'-reuse-tmpc',
|
'-keepc',
|
||||||
'-w',
|
'-w',
|
||||||
'-print_v_files',
|
'-print_v_files',
|
||||||
'-error-limit',
|
'-error-limit',
|
||||||
|
|
|
@ -59,5 +59,5 @@ These build flags are enabled on `build` and `run` as long as the backend is set
|
||||||
Useful for similar use-case as above option, except it replaces V-generated prelude with
|
Useful for similar use-case as above option, except it replaces V-generated prelude with
|
||||||
your custom one loaded from specified <path>.
|
your custom one loaded from specified <path>.
|
||||||
|
|
||||||
-reuse-tmpc
|
-keepc
|
||||||
Do not remove the temporary .tmp.c and .tmp.c.rsp files. Also do not use a random prefix for them, so they would be fixed and predictable.
|
Do not remove the temporary .tmp.c and .tmp.c.rsp files. Also do not use a random prefix for them, so they would be fixed and predictable.
|
||||||
|
|
|
@ -268,7 +268,7 @@ pub fn parse_args(args []string) (&Preferences, string) {
|
||||||
'-W' {
|
'-W' {
|
||||||
res.warns_are_errors = true
|
res.warns_are_errors = true
|
||||||
}
|
}
|
||||||
'-reuse-tmpc' {
|
'-keepc' {
|
||||||
res.reuse_tmpc = true
|
res.reuse_tmpc = true
|
||||||
}
|
}
|
||||||
'-w' {
|
'-w' {
|
||||||
|
|
Loading…
Reference in New Issue