gaoke 发表于 2016-11-30 08:39:00

使用Eclipse调试Sqlite

  gcc -O2 -DNDEBUG=1 -DTHREADSAFE=1 -c *.c
gcc -s -o sqlite3 *.o


rm shell.o
gcc -shared -s -o sqlite3.dll *.o *.def -Wl,--out-implib,libsqlite.dll.a



gcc -O0 -DNDEBUG=1 -DTHREADSAFE=1 -g3 -Wall -c -fmessage-length=0 shell.c
gcc -O0 -DNDEBUG=1 -DTHREADSAFE=1 -g3 -Wall -c -fmessage-length=0 sqlite3.c




gcc -O0 -DNDEBUG=1 -DTHREADSAFE=1 -g3 -Wall -c -fmessage-length=0 *.c
gcc -O0 -DNDEBUG=1 -DTHREADSAFE=1 -Wall -fmessage-length=0 -o sqlite3 *.o


  gcc -O0 -DNDEBUG=1 -DTHREADSAFE=1 -ggdb -Wall -c -fmessage-length=0 *.c
gcc -o sqlite3 *.o

  

  

  相关软件下载:
  

  文件名: mingw.part1.rar
下载地址: http://www.rayfile.com/files/15425e61-d17a-11e0-a481-0015c55db73d/
  http://dl.dbank.com/c0k3rqnwj9

文件名: mingw.part2.rar
下载地址: http://www.rayfile.com/files/b5f272a1-d17a-11e0-a83b-0015c55db73d/
  http://dl.dbank.com/c0feqwcua9
页: [1]
查看完整版本: 使用Eclipse调试Sqlite