Skip to content

Commit

Permalink
GH-19: Fixed msys2 search locations
Browse files Browse the repository at this point in the history
  • Loading branch information
negrutiu committed May 21, 2024
1 parent e45c133 commit ac12326
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _build_mingw_Release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ setlocal enabledelayedexpansion
echo.

if not exist "%MINGW32%\bin\gcc.exe" set MINGW32=%MINGW32_INSTDIR%
if not exist "%MINGW32%\bin\gcc.exe" set MINGW32=%SYSTEMROOT%\msys64\mingw32
if not exist "%MINGW32%\bin\gcc.exe" set MINGW32=%SYSTEMROOT%\msys2\mingw32
if not exist "%MINGW32%\bin\gcc.exe" set MINGW32=%SystemDrive%\msys2\mingw32
if not exist "%MINGW32%\bin\gcc.exe" set MINGW32=%SystemDrive%\msys64\mingw32

if not exist "%MINGW64%\bin\gcc.exe" set MINGW64=%MINGW64_INSTDIR%
if not exist "%MINGW64%\bin\gcc.exe" set MINGW64=%SYSTEMROOT%\msys64\mingw64
if not exist "%MINGW64%\bin\gcc.exe" set MINGW64=%SYSTEMROOT%\msys2\mingw64
if not exist "%MINGW64%\bin\gcc.exe" set MINGW64=%SystemDrive%\msys2\mingw64
if not exist "%MINGW64%\bin\gcc.exe" set MINGW64=%SystemDrive%\msys64\mingw64

set ORIGINAL_PATH=%PATH%

Expand Down

0 comments on commit ac12326

Please sign in to comment.