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:
parent
9f190b82ad
commit
239a8c8aa3
@ -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
|
||||
|
@ -922,13 +922,16 @@ fn (mut g Gen) stmt(node ast.Stmt) {
|
||||
// g.tmp_count = 0 TODO
|
||||
mut skip := false
|
||||
pos := g.out.buf.len
|
||||
should_bundle_module := util.should_bundle_module(node.mod)
|
||||
if g.pref.build_mode == .build_module {
|
||||
// if node.name.contains('parse_text') {
|
||||
// println('!!! $node.name mod=$node.mod, built=$g.module_built')
|
||||
// }
|
||||
// TODO true for not just "builtin"
|
||||
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.
|
||||
// println('skip bm $node.name mod=$node.mod module_built=$g.module_built')
|
||||
skip = true
|
||||
@ -943,7 +946,7 @@ fn (mut g Gen) stmt(node ast.Stmt) {
|
||||
if g.pref.use_cache {
|
||||
// We are using prebuilt modules, we do not need to generate
|
||||
// their functions in main.c.
|
||||
if node.mod != 'main' && node.mod != 'help' {
|
||||
if node.mod != 'main' && node.mod != 'help' && !should_bundle_module {
|
||||
skip = true
|
||||
}
|
||||
}
|
||||
|
@ -15,6 +15,7 @@ pub const (
|
||||
// math.bits is needed by strconv.ftoa
|
||||
pub const (
|
||||
builtin_module_parts = ['math.bits', 'strconv', 'strconv.ftoa', 'hash', 'strings', 'builtin']
|
||||
bundle_modules = ['sokol', 'gx', 'gg', 'fontstash']
|
||||
)
|
||||
|
||||
pub const (
|
||||
@ -408,3 +409,7 @@ pub fn recompile_file(vexe string, file string) {
|
||||
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
Block a user