Skip to content

Commit 9eef339

Browse files
medvednikovpull[bot]
authored andcommitted
checker: do not require fn main when building an object file
1 parent 55a24cc commit 9eef339

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

vlib/v/checker/checker.v

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ pub fn (mut c Checker) check_files(ast_files []&ast.File) {
368368
if !has_main_mod_file {
369369
c.error('project must include a `main` module or be a shared library (compile with `v -shared`)',
370370
token.Pos{})
371-
} else if !has_main_fn {
371+
} else if !has_main_fn && !c.pref.is_o {
372372
c.error('function `main` must be declared in the main module', token.Pos{})
373373
}
374374
}

vlib/v/gen/c/cgen.v

+3-2
Original file line numberDiff line numberDiff line change
@@ -5486,8 +5486,9 @@ fn (mut g Gen) enum_val(node ast.EnumVal) {
54865486
// && g.inside_switch
54875487
if g.pref.translated && node.typ.is_number() {
54885488
// Mostly in translated code, when C enums are used as ints in switches
5489-
sym := g.table.sym(node.typ)
5490-
g.write('/* $node enum val is_number $node.mod styp=$styp sym=$sym*/_const_main__$node.val')
5489+
// sym := g.table.sym(node.typ)
5490+
// g.write('/* $node enum val is_number $node.mod styp=$styp sym=$sym*/_const_main__$node.val')
5491+
g.write('_const_main__$node.val')
54915492
} else {
54925493
g.write('${styp}__$node.val')
54935494
}

0 commit comments

Comments
 (0)