Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix for ticket 91: Modify the "publish.sh" script to use the new mingw cross-compiler installed on the development platform. (CVS 657) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3cac283de4939538f09cd11e2cbdc84e |
User & Date: | drh 2002-07-02 11:55:33.000 |
Context
2002-07-02
| ||
13:05 | Fix for ticket #92: Correct the sqliteExprCompare() function so that is takes into account the iTable and iColumn fields of the Expr structure. Otherwise, "min(a)" and "min(b)" will compare equal to each other in views. (CVS 658) (check-in: 85793a4f03 user: drh tags: trunk) | |
11:55 | Fix for ticket 91: Modify the "publish.sh" script to use the new mingw cross-compiler installed on the development platform. (CVS 657) (check-in: 3cac283de4 user: drh tags: trunk) | |
2002-07-01
| ||
12:35 | Version 2.5.4 (CVS 656) (check-in: f7159fde6b user: drh tags: trunk) | |
Changes
Changes to publish.sh.
︙ | ︙ | |||
53 54 55 56 57 58 59 | make target_source cd tsrc rm shell.c TCLDIR=/home/drh/tcltk/8.2win TCLSTUBLIB=$TCLDIR/tclstub82.a PATH=$PATH:/opt/mingw/bin OPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DTHREADSAFE=1' | | | | | | | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | make target_source cd tsrc rm shell.c TCLDIR=/home/drh/tcltk/8.2win TCLSTUBLIB=$TCLDIR/tclstub82.a PATH=$PATH:/opt/mingw/bin OPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DTHREADSAFE=1' CC="i386-mingw32msvc-gcc -O2 $OPTS -I. -I$TCLDIR" rm shell.c for i in *.c; do CMD="$CC -c $i" echo $CMD $CMD done echo 'EXPORTS' >tclsqlite.def echo 'Tclsqlite_Init' >>tclsqlite.def echo 'Sqlite_Init' >>tclsqlite.def i386-mingw32msvc-dllwrap \ --def tclsqlite.def -v --export-all \ --driver-name i386-mingw32msvc-gcc \ --dlltool-name i386-mingw32msvc-dlltool \ --as i386-mingw32msvc-as \ --target i386-mingw32 \ -dllname tclsqlite.dll -lmsvcrt *.o $TCLSTUBLIB i386-mingw32msvc-strip tclsqlite.dll mv tclsqlite.dll .. rm tclsqlite.o cat >sqlite.def <<\END_OF_FILE EXPORTS sqlite_open sqlite_close sqlite_exec |
︙ | ︙ | |||
100 101 102 103 104 105 106 | sqlite_libversion sqlite_libencoding sqlite_changes sqliteMalloc sqliteFree sqliteRealloc END_OF_FILE | | | | | | | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 | sqlite_libversion sqlite_libencoding sqlite_changes sqliteMalloc sqliteFree sqliteRealloc END_OF_FILE i386-mingw32msvc-dllwrap \ --def sqlite.def -v --export-all \ --driver-name i386-mingw32msvc-gcc \ --dlltool-name i386-mingw32msvc-dlltool \ --as i386-mingw32msvc-as \ --target i386-mingw32 \ -dllname sqlite.dll -lmsvcrt *.o i386-mingw32msvc-strip sqlite.dll mv sqlite.dll sqlite.def .. cd .. rm -f tclsqlite.zip sqlitedll.zip zip tclsqlite.zip tclsqlite.dll zip sqlitedll.zip sqlite.dll sqlite.def # Build the sqlite.exe executable for windows. # make target_source cd tsrc rm tclsqlite.c OPTS='-DSTATIC_BUILD=1 -DNDEBUG=1' i386-mingw32msvc-gcc -O2 $OPTS -I. -I$TCLDIR *.c -o sqlite.exe mv sqlite.exe .. cd .. rm -f sqlite.zip zip sqlite.zip sqlite.exe # Construct a tarball of the source tree # |
︙ | ︙ |