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

checker: fix building of shared .so libs

This commit is contained in:
Delyan Angelov
2020-04-16 16:30:19 +03:00
parent e05f103c41
commit cc9828b481
2 changed files with 15 additions and 9 deletions

View File

@@ -126,7 +126,9 @@ fn parse_args(args []string) (&pref.Preferences, string) {
match arg {
'-v' { res.is_verbose = true }
'-cg' { res.is_debug = true }
'-live' { res.is_solive = true }
'-live' { res.is_live = true }
'-solive' { res.is_solive = true res.is_so = true }
'-shared' { res.is_so = true }
'-autofree' { res.autofree = true }
'-compress' { res.compress = true }
'-freestanding' { res.is_bare = true }