Revert "compiler: support setting pref.output_cross_c with -os cross"
This is reverted until cmd/tools/gen_vc.v
starts passing `-os cross` again, or until
https://github.com/vlang/vc/pull/12 is merged.
This reverts commit 878be4d886
.
pull/4573/head
parent
6180b843a1
commit
ba85b8d024
11
cmd/v/v.v
11
cmd/v/v.v
|
@ -170,17 +170,14 @@ fn parse_args(args []string) (&pref.Preferences, string) {
|
|||
res.backend = .x64
|
||||
}
|
||||
'-os' {
|
||||
// TODO Remove `tmp` variable when it doesn't error out in C.
|
||||
target_os := cmdline.option(current_args, '-os', '')
|
||||
i++
|
||||
target_os_kind := pref.os_from_string(target_os) or {
|
||||
if target_os == 'cross' {
|
||||
res.output_cross_c = true
|
||||
continue
|
||||
}
|
||||
tmp := pref.os_from_string(target_os) or {
|
||||
println('unknown operating system target `$target_os`')
|
||||
exit(1)
|
||||
}
|
||||
res.os = target_os_kind
|
||||
res.os = tmp
|
||||
i++
|
||||
}
|
||||
'-cflags' {
|
||||
res.cflags = cmdline.option(current_args, '-cflags', '')
|
||||
|
|
Loading…
Reference in New Issue