Author Topic: MSYS2 Question  (Read 2087 times)

Offline Frank_CB

  • Almost regular
  • **
  • Posts: 148
MSYS2 Question
« on: September 06, 2022, 01:41:22 am »
Can someone suggest why C:\msys64\mingw32\bin is empty, while C:\msys64\mingw64\bin is full of toolchain executables? The package mingw-w64-x86_64-toolchain was installed.
« Last Edit: January 04, 2023, 07:41:02 pm by Frank_CB »

Offline AndrewCot

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 678
Re: MSYS2 Question
« Reply #1 on: September 06, 2022, 03:07:40 am »
Use the MSYS2 search function page below to lookup the package and it will have the list of other packages it includes and also a list of files if the package includes any. You need to lookup the included packages to find the file they include until you get the full list.


Offline PB

  • Multiple posting newcomer
  • *
  • Posts: 57
Re: MSYS2 Question
« Reply #2 on: September 06, 2022, 07:58:59 am »
Can someone suggest why C:\msys64\mingw32\bin is empty, while C:\msys64\mingw64\bin is full of toolchain executables? The package mingw-w64-x86_64-toolchain was installed.

As the package name implies, it is the 64-bit package so it is not surprising that that the 32-bit tools are not installed.

If you want the 32-bit package, get mingw-w64-i686-toolchain: https://packages.msys2.org/group/mingw-w64-i686-toolchain

Offline Frank_CB

  • Almost regular
  • **
  • Posts: 148
Re: MSYS2 Question
« Reply #3 on: September 06, 2022, 06:35:48 pm »
@AndrewCot, @PB:
Thank you. Both comments were spot on!

Regards