-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update installer, mods order, readme and batch scripts
- Loading branch information
1 parent
8e7132b
commit ddbde5f
Showing
14 changed files
with
100 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@echo off | ||
rem Compile script using gcc preprocessor | ||
|
||
rem echo 1=%1 2=%2 3=%3 4=%4 5=%5 6=%6 7=%7 8=%8 9=%9 | ||
|
||
set sce= | ||
echo %~n3 | findstr /i /r "^hs_ ^gl_ ^test[0-9]" >nul && ( | ||
echo Compiling with short-circuit evaluation! | ||
set sce=-s | ||
) | ||
set out= | ||
if not "%3"=="" set out=-o %3 | ||
|
||
gcc -E -x c -P -Werror -Wfatal-errors -o "%~nx1.tmp" "%1" | ||
rem if errorlevel 1 exit /b %errorlevel% | ||
echo compile.exe -q -l -O2 %sce% "%~nx1.tmp" %out% | ||
compile.exe -q -l -O2 %sce% "%~nx1.tmp" %out% | ||
SET compileErr=%ERRORLEVEL% | ||
del "%~nx1.tmp" | ||
if exist "%~n1.err" del "%~n1.err" | ||
exit /B %compileErr% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
@echo off | ||
gcc -E -x c -P -Werror -Wfatal-errors -o "%~nx1.tmp" "%1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@ECHO OFF | ||
|
||
rem Used to batch recompile scripts previously decompiled with decompile_folder | ||
|
||
set compile=%~dp0compile.exe | ||
set output=..\ | ||
|
||
for %%i in (*.ssl) do ( | ||
"%compile%" -l -O0 -q -n "%%~nxi" -o "%output%/%%~ni.int" | ||
) | ||
|
||
:end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
wcc386.exe %1 -plw=0 -fo="%~nx1.i" -w4 -wcd123 -wcd138 | ||
@echo off | ||
rem wcc386.exe %1 -plw=0 -fo="%~nx1.i" -w4 -wcd123 -wcd138 | ||
wpp386.exe %1 -plw=0 -fo="%~nx1.i" -w4 -wcd735 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters