Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 982 Bytes

README.md

File metadata and controls

34 lines (20 loc) · 982 Bytes

MSYS2 wiki

MSYS2-Introduction

What is MSYS2?

Who Is Using MSYS2?

Environments

If you are unsure, go with UCRT64.

The MSYS environment contains the unix-like/cygwin based tools, lives under /usr and is special in that it is always active. All the other environments inherit from the MSYS environment and add various things on top of it.

IDEs and Text Editors

this doc contains how to configure terminal.integrated.profiles in VSC

How to search package

pacman -Ss gcc  # search gcc online
pacman -Qs gcc  # search gcc in local

pacman -Ss gcc | grep ucrt # filter ucrt
pacman -Qs gcc | grep ucrt # filter ucrt 

useful command

pwd | xargs.exe cygpath.exe -m {} # get pwd and convert to windows paths