📄 mkextu.sh
字号:
#!/bin/sh## This script is used to compile SQLite into a shared library on Linux.## Two separate shared libraries are generated. "sqlite3.so" is the core# library. "tclsqlite3.so" contains the TCL bindings and is the# library that is loaded into TCL in order to run SQLite.#CFLAGS=-O2 -Wallmake fts2amal.cecho gcc $CFLAGS -shared fts2amal.c -o fts2.sogcc $CFLAGS -shared fts2amal.c -o fts2.sostrip fts2.so
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -