diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-27 12:56:21 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-08-27 12:56:21 +0100 |
commit | d06e903e66a12319a3c0d1dd2d6f4bd7899fd669 (patch) | |
tree | 207009357d67c2aee488d3b2b06f565c1bc0dd59 | |
parent | 6e9bbe397c4846f440e57163e56694f95f5d9128 (diff) |
Fix editorial mishap
-rw-r--r-- | compile.bat | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compile.bat b/compile.bat index 1145b27..d8cb46c 100644 --- a/compile.bat +++ b/compile.bat @@ -108,7 +108,6 @@ for %%b in (%src%) do ( call :cc %%b || exit /b ) :: we need different library names for debugging because Microsoft...
:: actually, it's different anyway because we don't use vcruntime for releases
:: any more. see comment in wincrt.c
-:: required runtime bits ourselves (which saves 10KiB over static VCRT)
if "%dbg%"=="1" (
set clibs=-lmsvcrtd -lvcruntimed -lucrtd
) else (
|