Skip to content

Environment setup

Tools

  • MinGW
  • PowerShell
  • Windows Terminal

Steps

  1. Download and install MinGW or a custom version here
  2. Set envi parameters for MinGW using powershell
$INCLUDE = "C:\MinGW\bin"

$OLDPATH = [System.Environment]::GetEnvironmentVariable('PATH','machine')
$NEWPATH = "$OLDPATH;$INCLUDE"
[Environment]::SetEnvironmentVariable("PATH", "$NEWPATH", "Machine")

You can now use MAKE and GCC.