From f84475e8967ce8308f1fc43b6c2bcf68df90043d Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Mon, 2 Nov 2020 11:17:06 +0000 Subject: [PATCH] Add mini table of contents --- Installing-a-C-compiler-on-Windows.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Installing-a-C-compiler-on-Windows.md b/Installing-a-C-compiler-on-Windows.md index 3e2b7fa..de452a3 100644 --- a/Installing-a-C-compiler-on-Windows.md +++ b/Installing-a-C-compiler-on-Windows.md @@ -2,6 +2,11 @@ You can use MinGW-w64, Visual Studio, llvm-mingw, or tcc. Visual Studio takes a V uses recent Windows features like UTF-8 and color output support in console, IPv6 and native TLS support on sockets, etc. Windows 10 Fall Creators Update (**1709**) or later is the recommended Windows version for most complete compatibility. Windows 7, Windows 8(.1), and Windows 10 before Fall Creators Update are supported too but programs may lack some features and/or it may be hard to correctly link/redistribute recent C runtime library especially when using GNU C compiler. +* [MinGW-w64](#MinGW-w64) - GNU gcc +* [Visual Studio](#Visual-Studio) - Microsoft +* [llvm-mingw](#llvm-mingw) - clang with gcc compatibility +* [tcc](#tcc) - Tiny C compiler, fast compile times + #### MinGW-w64 [Download](https://github.com/vlang/v/releases/download/v0.1.10/mingw-w64-install.exe) and install MinGW-w64. I recommend installing it in `C:\mingw-w64`. You can use the default installation options.