v.pref: cleanup V options, support the documented -output and -backend
parent
8a109b031c
commit
39de06c200
|
@ -45,10 +45,6 @@ NB: the build flags are shared with the run command too:
|
||||||
If value is not provided, it is assumed to be set to `true`.
|
If value is not provided, it is assumed to be set to `true`.
|
||||||
`value` should be `1` or `0` to indicate `true` and `false` respectively otherwise.
|
`value` should be `1` or `0` to indicate `true` and `false` respectively otherwise.
|
||||||
|
|
||||||
-e <experiment>, -experiments <experiment>
|
|
||||||
Enable the specified experiment.
|
|
||||||
Currently, the only experiment available is: `prealloc`
|
|
||||||
|
|
||||||
-g
|
-g
|
||||||
Compile the executable in debug mode, allowing code to be debugged more easily.
|
Compile the executable in debug mode, allowing code to be debugged more easily.
|
||||||
|
|
||||||
|
|
|
@ -396,13 +396,13 @@ pub fn parse_args(known_external_commands []string, args []string) (&Preferences
|
||||||
'-translated' {
|
'-translated' {
|
||||||
res.translated = true
|
res.translated = true
|
||||||
}
|
}
|
||||||
'-color' {
|
|
||||||
res.use_color = .always
|
|
||||||
}
|
|
||||||
'-m32', '-m64' {
|
'-m32', '-m64' {
|
||||||
res.m64 = arg[2] == `6`
|
res.m64 = arg[2] == `6`
|
||||||
res.cflags += ' $arg'
|
res.cflags += ' $arg'
|
||||||
}
|
}
|
||||||
|
'-color' {
|
||||||
|
res.use_color = .always
|
||||||
|
}
|
||||||
'-nocolor' {
|
'-nocolor' {
|
||||||
res.use_color = .never
|
res.use_color = .never
|
||||||
}
|
}
|
||||||
|
@ -478,7 +478,7 @@ pub fn parse_args(known_external_commands []string, args []string) (&Preferences
|
||||||
res.build_options << '$arg "$res.cflags.trim_space()"'
|
res.build_options << '$arg "$res.cflags.trim_space()"'
|
||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
'-define', '-d' {
|
'-d', '-define' {
|
||||||
if current_args.len > 1 {
|
if current_args.len > 1 {
|
||||||
define := current_args[1]
|
define := current_args[1]
|
||||||
parse_define(mut res, define)
|
parse_define(mut res, define)
|
||||||
|
@ -495,8 +495,8 @@ pub fn parse_args(known_external_commands []string, args []string) (&Preferences
|
||||||
arg, '10').int()
|
arg, '10').int()
|
||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
'-o' {
|
'-o', '-output' {
|
||||||
res.out_name = cmdline.option(current_args, '-o', '')
|
res.out_name = cmdline.option(current_args, arg, '')
|
||||||
if res.out_name.ends_with('.js') {
|
if res.out_name.ends_with('.js') {
|
||||||
res.backend = .js
|
res.backend = .js
|
||||||
}
|
}
|
||||||
|
@ -505,8 +505,8 @@ pub fn parse_args(known_external_commands []string, args []string) (&Preferences
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
'-b' {
|
'-b', '-backend' {
|
||||||
sbackend := cmdline.option(current_args, '-b', 'c')
|
sbackend := cmdline.option(current_args, arg, 'c')
|
||||||
res.build_options << '$arg $sbackend'
|
res.build_options << '$arg $sbackend'
|
||||||
b := backend_from_string(sbackend) or { continue }
|
b := backend_from_string(sbackend) or { continue }
|
||||||
res.backend = b
|
res.backend = b
|
||||||
|
|
Loading…
Reference in New Issue