1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v: support -o - x_test.v too, describe -o - in the v help screen

This commit is contained in:
Delyan Angelov
2021-07-18 16:34:47 +03:00
parent a007dd5d22
commit 016240d00b
2 changed files with 4 additions and 0 deletions

View File

@@ -107,6 +107,9 @@ fn (mut b Builder) run_compiled_executable_and_exit() {
if b.pref.only_check_syntax {
return
}
if b.pref.out_name.ends_with('/-') {
return
}
if b.pref.os == .ios {
panic('Running iOS apps is not supported yet.')
}