From a4690e4ce2427b128f13f4dbe2332f481644ca98 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 23 Mar 2021 14:58:29 +0200 Subject: [PATCH] CI: do not use `v self` temporarily, till vc is regenerated --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2da5b1ce07..d3f23001c9 100644 --- a/Makefile +++ b/Makefile @@ -80,10 +80,12 @@ endif all: latest_vc latest_tcc ifdef WIN32 $(CC) $(CFLAGS) -g -std=c99 -municode -w -o $(V) $(VC)/$(VCFILE) $(LDFLAGS) - $(V) self + $(V) -o v2.exe cmd/v + move /y v2.exe v.exe else $(CC) $(CFLAGS) -g -std=gnu99 -w -o $(V) $(VC)/$(VCFILE) -lm -lpthread $(LDFLAGS) - $(V) self + $(V) -o v2.exe cmd/v + mv -f v2.exe v endif @echo "V has been successfully built" @$(V) -version