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

cgen: cached modules fixes (#7345)

This commit is contained in:
joe-conigliaro
2020-12-16 02:07:06 +11:00
committed by GitHub
parent 9f190b82ad
commit 239a8c8aa3
3 changed files with 14 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ import os
import time
import v.cflag
import v.pref
import v.util
import term
const (
@@ -375,6 +376,9 @@ fn (mut v Builder) cc() {
if imp in built_modules {
continue
}
if util.should_bundle_module(imp) {
continue
}
// not working
if imp == 'webview' {
continue