From f5c4671bfbad96bf346bd7e9a21fc4317b4959df Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 3 Dec 2022 17:00:20 +0530 Subject: Adds most of the tools --- v_windows/v/Dockerfile.cross | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 v_windows/v/Dockerfile.cross (limited to 'v_windows/v/Dockerfile.cross') diff --git a/v_windows/v/Dockerfile.cross b/v_windows/v/Dockerfile.cross new file mode 100644 index 0000000..22a0ff0 --- /dev/null +++ b/v_windows/v/Dockerfile.cross @@ -0,0 +1,10 @@ +FROM mstorsjo/llvm-mingw + +LABEL maintainer="Vitaly Takmazov " +COPY . . +RUN make +RUN ./v -os windows -o v.c cmd/v +RUN x86_64-w64-mingw32-gcc v.c -std=c99 -w -municode -o v.exe +RUN file v.exe + +CMD [ "bash" ] -- cgit v1.2.3