1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-27 21:07:47 +00:00

setup_win.bat: create internal/c/c_compiler

internal/c/c_compiler no longer contains anything, so git will not
create it. This change makes setup_win.bat create the directory if it's
not already there.
This commit is contained in:
Matthew Kilgore 2022-04-26 00:34:41 -04:00
parent 3ff987edb8
commit 9315646e76
2 changed files with 3 additions and 0 deletions

1
internal/c/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
c_compiler

View file

@ -9,6 +9,8 @@ del /q /s internal\c\parts\*.o >nul 2>nul
del /q /s internal\c\parts\*.a >nul 2>nul
del /q /s internal\temp\*.* >nul 2>nul
mkdir internal\c\c_compiler
if exist internal\c\c_compiler\bin\c++.exe goto skipccompsetup
cd internal\c\mingw
reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set MINGW=mingw32.exe || set MINGW=mingw64.exe