Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | :-) (CVS 118) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4132d4760f6a2cbcf853f82546987d93 |
User & Date: | drh 2000-07-31 19:16:32.000 |
Context
2000-08-01
| ||
09:56 | fix parser stack overflow (CVS 119) (check-in: bffca90f37 user: drh tags: trunk) | |
2000-07-31
| ||
19:16 | :-) (CVS 118) (check-in: 4132d4760f user: drh tags: trunk) | |
18:56 | added winNT cross-compile documentation (CVS 117) (check-in: 8fc48dd483 user: drh tags: trunk) | |
Changes
Changes to www/crosscompile.tcl.
1 2 3 | # # Run this Tcl script to generate the crosscompile.html file. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # # Run this Tcl script to generate the crosscompile.html file. # set rcsid {$Id: crosscompile.tcl,v 1.2 2000/07/31 19:16:32 drh Exp $} puts {<html> <head> <title>Notes On How To Compile SQLite Using The MinGW Cross-Compiler</title> </head> <body bgcolor=white> <h1 align=center> Notes On How To Compile SQLite Using The MinGW Cross-Compiler </h1>} puts "<p align=center> (This page was last modified on [lrange $rcsid 3 4] GMT) </p>" puts { <p><a href="http://www.mingw.org/">MinGW</a> or <a href="http://www.mingw.org/">Minimalist GNU For Windows</a> is a version of the popular GCC compiler that builds Win95/Win98/WinNT binaries. See the website for details.</p> <p>This page describes how you can use MinGW configured as a cross-compiler running under RedHat 6.0 Linux to generate a binary for SQLite that runs under WinNT.</p> } |
︙ | ︙ |
Changes to www/index.tcl.
1 2 3 | # # Run this TCL script to generate HTML for the index.html file. # | | | 1 2 3 4 5 6 7 8 9 10 11 | # # Run this TCL script to generate HTML for the index.html file. # set rcsid {$Id: index.tcl,v 1.21 2000/07/31 19:16:32 drh Exp $} puts {<html> <head><title>SQLite: An SQL Database Engine Built Atop GDBM</title></head> <body bgcolor=white> <h1 align=center>SQLite: An SQL Database Engine Built Atop <a href="http://www.gnu.org/software/gdbm/gdbm.html">GDBM</a></h1> <p align=center>} |
︙ | ︙ | |||
55 56 57 58 59 60 61 | <li>A <a href="http://dev.scriptics.com/">Tcl</a> interface is included.</li> <li>Command-line access program <a href="sqlite.html">sqlite</a> uses the <a href="http://www.google.com/search?q=gnu+readline+library">GNU Readline library</a></li> <li>A Tcl-based test suite provides near 100% code coverage</li> <li>7500+ lines of C code. No external dependencies other than GDBM.</li> | | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <li>A <a href="http://dev.scriptics.com/">Tcl</a> interface is included.</li> <li>Command-line access program <a href="sqlite.html">sqlite</a> uses the <a href="http://www.google.com/search?q=gnu+readline+library">GNU Readline library</a></li> <li>A Tcl-based test suite provides near 100% code coverage</li> <li>7500+ lines of C code. No external dependencies other than GDBM.</li> <li>Built and tested under Linux, HPUX, and WinNT. Should work under any Unix or Win95/98/2000.</li> </ul> </p> <h2>Current Status</h2> <p>A <a href="changes.html">change history</a> is available online. There are currently no <em>known</em> bugs or memory leaks |
︙ | ︙ |
Changes to www/mingw.tcl.
1 2 3 | # # Run this Tcl script to generate the crosscompile.html file. # | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # # Run this Tcl script to generate the crosscompile.html file. # set rcsid {$Id: mingw.tcl,v 1.2 2000/07/31 19:16:32 drh Exp $} puts {<html> <head> <title>Notes On How To Build MinGW As A Cross-Compiler</title> </head> <body bgcolor=white> <h1 align=center> Notes On How To Build MinGW As A Cross-Compiler </h1>} puts "<p align=center> (This page was last modified on [lrange $rcsid 3 4] GMT) </p>" puts { <p><a href="http://www.mingw.org/">MinGW</a> or <a href="http://www.mingw.org/">Minimalist GNU For Windows</a> is a version of the popular GCC compiler that builds Win95/Win98/WinNT binaries. See the website for details.</p> <p>This page describes how you can build MinGW from sources as a cross-compiler running under Linux. Doing so will allow you to construct WinNT binaries from the comfort and convenience of your Unix desktop.</p> |
︙ | ︙ |