From ad5b829e5c482610d011fb45b3e9430e42e3529b Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 21 Apr 2025 19:54:42 +0300 Subject: [PATCH] v: remove closure usage from the compiler frontend (simplify bootstrapping/porting on more exotic platforms) --- cmd/v/v.v | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/cmd/v/v.v b/cmd/v/v.v index 9a69dbfb58..2ae98a1ca2 100644 --- a/cmd/v/v.v +++ b/cmd/v/v.v @@ -1,6 +1,7 @@ // Copyright (c) 2019-2024 Alexander Medvednikov. All rights reserved. // Use of this source code is governed by an MIT license // that can be found in the LICENSE file. +@[has_globals] module main import os @@ -59,6 +60,8 @@ const external_tools = [ ] const list_of_flags_that_allow_duplicates = ['cc', 'd', 'define', 'cf', 'cflags'] +__global timers = &util.Timers(unsafe { nil }) + fn main() { unbuffer_stdout() mut timers_should_print := false @@ -68,12 +71,12 @@ fn main() { if '-show-timings' in os.args { timers_should_print = true } - mut timers := util.new_timers(should_print: timers_should_print, label: 'main') + timers = util.new_timers(should_print: timers_should_print, label: 'main') timers.start('v start') timers.show('v start') timers.start('TOTAL') // use at_exit here, instead of defer, since some code paths later do early exit(0) or exit(1), for showing errors, or after `v run` - at_exit(fn [mut timers] () { + at_exit(fn () { timers.show('TOTAL') })! timers.start('v parsing CLI args')