Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update build docs to include Mono and the managed-only binaries. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
752f754a118391ef6fc488ed400bc724 |
User & Date: | mistachkin 2012-01-23 04:54:53.476 |
Context
2012-01-23
| ||
07:10 | Add a draft 'Frequently Asked Questions' page. check-in: e2a3aad455 user: mistachkin tags: trunk | |
04:54 | Update build docs to include Mono and the managed-only binaries. check-in: 752f754a11 user: mistachkin tags: trunk | |
2012-01-22
| ||
13:23 | More doc reformatting. check-in: 582f3d91c4 user: mistachkin tags: trunk | |
Changes
Changes to www/build.wiki.
︙ | ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | System.Data.SQLite project. </li> <li> The string "<year>" represents the version of Visual Studio being used (e.g. 2008). </li> </ol> <a name="all"></a> <h2>All Builds</h2> <ol> <li> | > > > > > > | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | System.Data.SQLite project. </li> <li> The string "<year>" represents the version of Visual Studio being used (e.g. 2008). </li> <li> For now, the project will always be built on modern Windows using the .NET Framework even when they will eventually be deployed to run under Mono on Unix. </li> </ol> <a name="all"></a> <h2>All Builds</h2> <ol> <li> |
︙ | ︙ | |||
206 207 208 209 210 211 212 213 214 215 216 217 218 219 | be able to simply delete these directories. </li> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build the binaries for Win32 (x86): <b>build.bat ReleaseNativeOnly Win32</b><br /><i>You may need to enter the command "<b>setenv /x86</b>" first if you are using a "Windows SDK Command Prompt" or "Visual Studio Command Prompt" window.</i> </li> | > > > > > > > > > > > | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | be able to simply delete these directories. </li> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to build the managed-only binaries: <b>build.bat ReleaseManagedOnly</b> </li> <li> Make sure everything succeeds with no errors; the log file "%TEMP%\System.Data.SQLite.Build_ReleaseManagedOnly_Win32_<year>_Unknown.log" may be checked if any errors should occur. </li> <li> Enter the following command to build the binaries for Win32 (x86): <b>build.bat ReleaseNativeOnly Win32</b><br /><i>You may need to enter the command "<b>setenv /x86</b>" first if you are using a "Windows SDK Command Prompt" or "Visual Studio Command Prompt" window.</i> </li> |
︙ | ︙ | |||
248 249 250 251 252 253 254 | <li> Make sure everything succeeds with no errors. Inno Setup should produce "success" messages very similar to the following: <b>Successful compile (X.XXX sec). Resulting Setup program filename is: abc</b> </li> </ol> | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | <li> Make sure everything succeeds with no errors. Inno Setup should produce "success" messages very similar to the following: <b>Successful compile (X.XXX sec). Resulting Setup program filename is: abc</b> </li> </ol> <a name="mono"></a> <h2>Mono Build</h2> <ol> <li> Complete the steps outlined in the [./build.wiki#all | All Builds] section (above). </li> <li> Make sure the "<root>\bin" and "<root>\obj" directories are completely free of all output files. In theory, you should be able to simply delete these directories. </li> <li>Open a normal command prompt window with "cmd.exe".</li> <li>Change the current directory to "<root>\Setup".</li> <li> Enter the following command to set the environment variable used to pass the necessary extra arguments to MSBuild: <b>SET MSBUILD_ARGS=/property:UseInteropDll=false /property:UseSqliteStandard=true</b> </li> <li> Enter the following command to build the managed-only binaries for Mono: <b>build.bat ReleaseManagedOnly</b> </li> <li> Make sure everything succeeds with no errors; the log file "%TEMP%\System.Data.SQLite.Build_ReleaseManagedOnly_Win32_<year>_Unknown.log" may be checked if any errors should occur. </li> </ol> |