Browse Source

Merge pull request #178 from Jackie9527/bugfix-7326

build sqlite lib linking against msvcrt.dll
Danilo Aimini 2 years ago
parent
commit
90d3f468e0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package-system/sqlite/build_windows.cmd

+ 1 - 1
package-system/sqlite/build_windows.cmd

@@ -20,7 +20,7 @@ ECHO path as tcl is required to build for windows
 cd %BLD_PATH%
 
 REM Build the release library
-call nmake /f ..\src\Makefile.msc TOP=..\src libsqlite3.lib DEBUG=0
+call nmake /f ..\src\Makefile.msc TOP=..\src libsqlite3.lib DEBUG=0 USE_CRT_DLL=1
 IF %ERRORLEVEL% NEQ 0 (
     ECHO "nmake for debug Command Failed"
     exit /b 1