Created
February 22, 2022 09:20
-
-
Save namazso/8ae630317c42ccf9ecaf5fa3286e53e5 to your computer and use it in GitHub Desktop.
MSYS2 in Windows terminal
This file contains 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
{ | |
"commandline": "cmd /c \"set MSYSTEM=MINGW32 && set LOGINSHELL=bash && C:\\msys64\\usr\\bin\\bash.exe --login\"", | |
"name": "MSYS2 MinGW 32-bit", | |
"icon": "C:\\msys64\\mingw32.ico" | |
}, | |
{ | |
"commandline": "cmd /c \"set MSYSTEM=MINGW64 && set LOGINSHELL=bash && C:\\msys64\\usr\\bin\\bash.exe --login\"", | |
"name": "MSYS2 MinGW 64-bit", | |
"icon": "C:\\msys64\\mingw64.ico" | |
}, | |
{ | |
"commandline": "cmd /c \"set MSYSTEM=UCRT64 && set LOGINSHELL=bash && C:\\msys64\\usr\\bin\\bash.exe --login\"", | |
"name": "MSYS2 MinGW UCRT 64-bit", | |
"icon": "C:\\msys64\\ucrt64.ico" | |
}, | |
{ | |
"commandline": "cmd /c \"set MSYSTEM=CLANG64 && set LOGINSHELL=bash && C:\\msys64\\usr\\bin\\bash.exe --login\"", | |
"name": "MSYS2 clang 64-bit", | |
"icon": "C:\\msys64\\clang64.ico" | |
}, | |
{ | |
"commandline": "cmd /c \"set MSYSTEM=MSYS && set LOGINSHELL=bash && C:\\msys64\\usr\\bin\\bash.exe --login\"", | |
"name": "MSYS2 MSYS", | |
"icon": "C:\\msys64\\msys2.ico" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment