mkdll.sh

来自「嵌入式数据库SQLITE,含移植到ARM_LINUX的说明」· Shell 代码 · 共 45 行

SH
45
字号
#!/bin/sh## This script is used to compile SQLite into a DLL.## Two separate DLLs are generated.  "sqlite3.dll" is the core# library.  "tclsqlite3.dll" contains the TCL bindings and is the# library that is loaded into TCL in order to run SQLite.#make target_sourcecd tsrcPATH=$PATH:/opt/mingw/binTCLDIR=/home/drh/tcltk/846/win/846winTCLSTUBLIB=$TCLDIR/libtcl84stub.aOPTS='-DUSE_TCL_STUBS=1 -DNDEBUG=1 -DTHREADSAFE=1 -DBUILD_sqlite=1'CC="i386-mingw32msvc-gcc -O2 $OPTS -I. -I$TCLDIR"rm shell.cfor i in *.c; do  CMD="$CC -c $i"  echo $CMD  $CMDdoneecho 'EXPORTS' >tclsqlite3.defecho 'Tclsqlite3_Init' >>tclsqlite3.defecho 'Tclsqlite_Init' >>tclsqlite3.defecho 'Sqlite3_Init' >>tclsqlite3.defecho 'Sqlite_Init' >>tclsqlite3.defi386-mingw32msvc-dllwrap \     --def tclsqlite3.def -v --export-all \     --driver-name i386-mingw32msvc-gcc \     --dlltool-name i386-mingw32msvc-dlltool \     --as i386-mingw32msvc-as \     --target i386-mingw32 \     -dllname tclsqlite3.dll -lmsvcrt *.o $TCLSTUBLIB#i386-mingw32msvc-strip tclsqlite3.dllrm tclsqlite.oi386-mingw32msvc-dllwrap \     --def sqlite3.def -v --export-all \     --driver-name i386-mingw32msvc-gcc \     --dlltool-name i386-mingw32msvc-dlltool \     --as i386-mingw32msvc-as \     --target i386-mingw32 \     -dllname sqlite3.dll -lmsvcrt *.o#i386-mingw32msvc-strip sqlite3.dllcd ..

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?