Last active
March 19, 2024 01:20
-
-
Save wilyJ80/862a964dc032dee2b1836208b5b5239d to your computer and use it in GitHub Desktop.
c-vscode-mingw-gcc-quickstart
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
winget install -e --id Microsoft.VisualStudioCode | |
winget install -e --id MSYS2.MSYS2 | |
C:\msys64\msys2_shell.cmd -c "pacman -Syu" | |
C:\msys64\msys2_shell.cmd -c "pacman -Su" | |
C:\msys64\msys2_shell.cmd -c "pacman -S --needed base-devel mingw-w64-ucrt-x86_64-toolchain" | |
setx PATH "%PATH%;C:\msys64\usr\bin" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DOES NOT WORK