summaryrefslogtreecommitdiff
path: root/tool/build-shell.sh
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2022-01-05 19:24:29 +0000
committerCy Schubert <cy@FreeBSD.org>2022-01-05 19:24:29 +0000
commit9b0b0740be1f3d3751d366f3bb2952090a9dc505 (patch)
tree596fd97301bf8c0581936cf70bf5f2d58bdb6b80 /tool/build-shell.sh
parent0511e356f5e2106928ee352ee974d1470c860a9a (diff)
Diffstat (limited to 'tool/build-shell.sh')
-rw-r--r--tool/build-shell.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/tool/build-shell.sh b/tool/build-shell.sh
new file mode 100644
index 000000000000..6a48299d73b5
--- /dev/null
+++ b/tool/build-shell.sh
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# This script demonstrates how to do a full-featured build of the sqlite3
+# command-line shell on Linux.
+#
+# SQLite source code should be in a sibling directory named "sqlite". For
+# example, put SQLite sources in ~/sqlite/sqlite and run this script from
+# ~/sqlite/bld. There should be an appropriate Makefile in the current
+# directory as well.
+#
+make sqlite3.c
+gcc -o sqlite3 -g -Os -I. \
+ -DSQLITE_THREADSAFE=0 \
+ -DSQLITE_ENABLE_VFSTRACE \
+ -DSQLITE_ENABLE_STAT3 \
+ -DSQLITE_ENABLE_FTS4 \
+ -DSQLITE_ENABLE_RTREE \
+ -DHAVE_READLINE \
+ -DHAVE_USLEEP=1 \
+ ../sqlite/src/shell.c \
+ ../sqlite/src/test_vfstrace.c \
+ sqlite3.c -ldl -lreadline -lncurses