Changes between Version 7 and Version 8 of AdminDepLibs
- Timestamp:
- Aug 29, 2018, 7:39:18 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AdminDepLibs
v7 v8 107 107 (will be deprecated once we switch to concierge-based auto attach) 108 108 109 Project URL: !https://www.sqlite.org [[BR]]Follow these build instructions:[[BR]]1) Download the amalgamated source code files: !https://www.sqlite.org/index.html [[BR]]2) Open Visual Studio command prompt and cd to uncompressed amalagamted source directory:[[BR]][[BR]] 109 Project URL: !https://www.sqlite.org [[BR]]Follow these build instructions: 110 111 1) Download the Snapshop of the complete (raw) source tree for SQLite from: https://www.sqlite.org/index.html. For reference, the current filename for this format is: sqlite-src-3240000.zip[[BR]] 112 2) Unzip downloaded zip file[[BR]] 113 3) Open Visual Studio command prompt and cd to uncompressed directory[[BR]]4) Build the 32-bit non-debug files:[[BR]] 110 114 {{{ 111 $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_Win32_Debug.dll 112 $ cl sqlite3.c -O2 -link -dll -out:sqlite3_Win32_Release.dll 113 $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X86 115 $ nmake /f Makefile.msc 114 116 }}} 115 [[BR]]3) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt):[[BR]][[BR]] 117 5) Copy resulting files to the appropriate boinc_dependencies directories[[BR]] 118 6) Build the 32-bit debug files:[[BR]] 116 119 {{{ 117 $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_x64_Debug.dll 118 $ cl sqlite3.c -O2 -link -dll -out:sqlite3_x64_Release.dll 119 $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X64 120 $ nmake DEBUG=1 /f Makefile.msc 120 121 }}} 121 [[BR]]4) Copy resulting files to the appropriate boinc_dependencies directories 122 7) Copy resulting files to the appropriate boinc_dependencies directories[[BR]] 123 8) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt)[[BR]] 124 9) Build the 64-bit non-debug files:[[BR]] 125 {{{ 126 $ nmake PLATFORM=x64 /f Makefile.msc 127 }}} 128 10) Copy resulting files to the appropriate boinc_dependencies directories[[BR]] 129 11) Build the 64-bit debug files:[[BR]] 130 {{{ 131 $ nmake DEBUG=1 PLATFORM=x64 /f Makefile.msc 132 }}} 133 12) Copy resulting files to the appropriate boinc_dependencies directories[[BR]] 134 122 135 === !WxWidgets === 123 136 URL: http://www.wxwidgets.org/