From f628d6d35dd284503d658784db4435cb4dd774a7 Mon Sep 17 00:00:00 2001 From: Emily Hudson Date: Sun, 11 Aug 2019 17:10:22 +0000 Subject: [PATCH] Bootstrap twice on windows --- make.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/make.bat b/make.bat index e8e2041c18..82971dfa29 100644 --- a/make.bat +++ b/make.bat @@ -1,3 +1,5 @@ curl -O https://raw.githubusercontent.com/vlang/vc/master/v.c -gcc -std=gnu11 -DUNICODE -D_UNICODE -w -o v.exe v.c +gcc -std=gnu11 -DUNICODE -D_UNICODE -w -o v2.exe v.c +v2.exe -o v.exe compiler +del v2.exe del v.c