cgen: cached modules fixes (#7345)
parent
9f190b82ad
commit
239a8c8aa3
|
@ -7,6 +7,7 @@ import os
|
||||||
import time
|
import time
|
||||||
import v.cflag
|
import v.cflag
|
||||||
import v.pref
|
import v.pref
|
||||||
|
import v.util
|
||||||
import term
|
import term
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -375,6 +376,9 @@ fn (mut v Builder) cc() {
|
||||||
if imp in built_modules {
|
if imp in built_modules {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
if util.should_bundle_module(imp) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
// not working
|
// not working
|
||||||
if imp == 'webview' {
|
if imp == 'webview' {
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -922,13 +922,16 @@ fn (mut g Gen) stmt(node ast.Stmt) {
|
||||||
// g.tmp_count = 0 TODO
|
// g.tmp_count = 0 TODO
|
||||||
mut skip := false
|
mut skip := false
|
||||||
pos := g.out.buf.len
|
pos := g.out.buf.len
|
||||||
|
should_bundle_module := util.should_bundle_module(node.mod)
|
||||||
if g.pref.build_mode == .build_module {
|
if g.pref.build_mode == .build_module {
|
||||||
// if node.name.contains('parse_text') {
|
// if node.name.contains('parse_text') {
|
||||||
// println('!!! $node.name mod=$node.mod, built=$g.module_built')
|
// println('!!! $node.name mod=$node.mod, built=$g.module_built')
|
||||||
// }
|
// }
|
||||||
// TODO true for not just "builtin"
|
// TODO true for not just "builtin"
|
||||||
mod := if g.is_builtin_mod { 'builtin' } else { node.name.all_before_last('.') }
|
mod := if g.is_builtin_mod { 'builtin' } else { node.name.all_before_last('.') }
|
||||||
if mod != g.module_built && node.mod != g.module_built.after('/') {
|
if (mod != g.module_built &&
|
||||||
|
node.mod != g.module_built.after('/')) ||
|
||||||
|
should_bundle_module {
|
||||||
// Skip functions that don't have to be generated for this module.
|
// Skip functions that don't have to be generated for this module.
|
||||||
// println('skip bm $node.name mod=$node.mod module_built=$g.module_built')
|
// println('skip bm $node.name mod=$node.mod module_built=$g.module_built')
|
||||||
skip = true
|
skip = true
|
||||||
|
@ -943,7 +946,7 @@ fn (mut g Gen) stmt(node ast.Stmt) {
|
||||||
if g.pref.use_cache {
|
if g.pref.use_cache {
|
||||||
// We are using prebuilt modules, we do not need to generate
|
// We are using prebuilt modules, we do not need to generate
|
||||||
// their functions in main.c.
|
// their functions in main.c.
|
||||||
if node.mod != 'main' && node.mod != 'help' {
|
if node.mod != 'main' && node.mod != 'help' && !should_bundle_module {
|
||||||
skip = true
|
skip = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@ pub const (
|
||||||
// math.bits is needed by strconv.ftoa
|
// math.bits is needed by strconv.ftoa
|
||||||
pub const (
|
pub const (
|
||||||
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash', 'strings', 'builtin']
|
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash', 'strings', 'builtin']
|
||||||
|
bundle_modules = ['sokol', 'gx', 'gg', 'fontstash']
|
||||||
)
|
)
|
||||||
|
|
||||||
pub const (
|
pub const (
|
||||||
|
@ -408,3 +409,7 @@ pub fn recompile_file(vexe string, file string) {
|
||||||
exit(2)
|
exit(2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn should_bundle_module(mod string) bool {
|
||||||
|
return mod in bundle_modules || (mod.contains('.') && mod.all_before('.') in bundle_modules)
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue