You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 1, 2021. It is now read-only.
Error comes up on line: set __MINGW32__=1 && mingw32-make -B
Errors i found:
With default MSYS installation mingw32-make can't be found.
(That problem can simply be fixed, if you would specify the full path to executable. Like: /mingw64/bin/mingw32-make)
Personally, i don't know what happens for this error to happen. I didn't found any cc1.exe in msys/mingw installation folder, but i found cc.exe in /mingw64/bin/. Maybe that's just a typo?
The text was updated successfully, but these errors were encountered:
Personally I don't use MSYS2 shell to compile. It's just useful to install packages. But then it's easer to use Command Prompt (cmd.exe or Powershell). You just have to add MinGW to PATH, so everything has access to mingw32-make, C-compiler (cc.exe) and pkg-config. For example:
set PATH=%PATH%;\path\to\msys64\mingw64\bin
Also you might need to set CXX environment variable to c++ compiler, for example:
Steps to reproduce:
set __MINGW32__=1 && mingw32-make -B
Errors i found:
mingw32-make
can't be found.(That problem can simply be fixed, if you would specify the full path to executable. Like:
/mingw64/bin/mingw32-make
)Personally, i don't know what happens for this error to happen. I didn't found any
cc1.exe
in msys/mingw installation folder, but i foundcc.exe
in/mingw64/bin/
. Maybe that's just a typo?The text was updated successfully, but these errors were encountered: