2024-10-21 18:06:49 +02:00
|
|
|
#/usr/bin/tclsh
|
|
|
|
# ^^^ help out editors which guess this file's content type.
|
|
|
|
#
|
2024-10-20 03:41:36 +02:00
|
|
|
# This is the main autosetup-compatible configure script for the
|
|
|
|
# SQLite project.
|
2024-10-22 19:57:22 +02:00
|
|
|
#
|
|
|
|
# This script should be kept compatible with JimTCL, a copy of which
|
|
|
|
# is included in this source tree as ./autosetup/jimsh0.c. The number
|
|
|
|
# of incompatibilities between canonical TCL and JimTCL is very low
|
|
|
|
# and alternative formulations of incompatible constructs have, so
|
|
|
|
# far, been easy to find.
|
|
|
|
#
|
|
|
|
# JimTCL: https://jim.tcl.tk
|
|
|
|
#
|
2024-10-28 15:16:50 +01:00
|
|
|
use cc cc-db cc-shared cc-lib proj pkg-config
|
2024-10-26 01:03:33 +02:00
|
|
|
|
2024-10-25 15:56:13 +02:00
|
|
|
# $DUMP_DEFINES_TXT is the file emitted by --dump-defines, intended
|
|
|
|
# only for build debugging and not part of the public build interface.
|
|
|
|
set DUMP_DEFINES_TXT ./config.defines.txt
|
|
|
|
# $DUMP_DEFINES_JSON is the autosetup counterpart of the historical
|
|
|
|
# "DEFS" var which was generated by the autotools in the pre-processed
|
2024-10-29 21:27:36 +01:00
|
|
|
# autotools builds (but not in the canonical tree). Generation of this
|
|
|
|
# file is disabled (via an empty file name) until/unless someone
|
|
|
|
# voices a specific interest in it. The original motivating use case
|
|
|
|
# is handled fine by sqlite_cfg.h.
|
2024-10-26 05:05:20 +02:00
|
|
|
set DUMP_DEFINES_JSON ""; #./config.defines.json
|
2024-09-24 23:08:49 +02:00
|
|
|
|
2024-09-25 05:37:34 +02:00
|
|
|
########################################################################
|
2024-10-22 19:57:22 +02:00
|
|
|
# Regarding flag compatibility with the historical autotool configure
|
|
|
|
# script:
|
|
|
|
#
|
2024-09-26 00:13:49 +02:00
|
|
|
# A very long story made short, autosetup's --flag handling has
|
|
|
|
# some behaviors which make it impossible to implement 100% identical
|
2024-10-20 03:09:51 +02:00
|
|
|
# flags compared to the historical autotools build. The differences
|
2024-09-26 00:13:49 +02:00
|
|
|
# are documented here:
|
2024-09-25 06:20:58 +02:00
|
|
|
#
|
2024-09-26 00:13:49 +02:00
|
|
|
# 1) --debug is used by autosetup itself, so we have to rename it to
|
|
|
|
# --with-debug. We cannot use --enable-debug because that is, for
|
|
|
|
# autosetup, and alias for --debug=1.
|
2024-09-25 06:20:58 +02:00
|
|
|
#
|
2024-09-26 00:13:49 +02:00
|
|
|
# 2) In autosetup, all flags starting with (--enable, --disable) are
|
2024-10-20 03:09:51 +02:00
|
|
|
# forced to be booleans and receive special handling in how they're
|
2024-09-26 00:13:49 +02:00
|
|
|
# resolved. Because of that we have to rename:
|
2024-09-25 06:20:58 +02:00
|
|
|
#
|
2024-09-26 00:13:49 +02:00
|
|
|
# 2.1) --enable-tempstore[=no] to --with-tempstore[=no].
|
2024-09-25 09:30:54 +02:00
|
|
|
#
|
2024-10-21 18:06:49 +02:00
|
|
|
########################################################################
|
|
|
|
# A gentle introduction to flags handling in autosetup
|
|
|
|
#
|
|
|
|
# Reference: https://msteveb.github.io/autosetup/developer/
|
|
|
|
#
|
|
|
|
# All configure flags must be described in an 'options' call, which
|
|
|
|
# must appear very early on in this script. The general syntax is:
|
|
|
|
#
|
|
|
|
# FLAG => {Help text}
|
|
|
|
#
|
|
|
|
# Where FLAG can have any of the following formats:
|
|
|
|
#
|
|
|
|
# boolopt => "a boolean option which defaults to disabled"
|
|
|
|
# boolopt2=1 => "a boolean option which defaults to enabled"
|
|
|
|
# stringopt: => "an option which takes an argument, e.g. --stringopt=value"
|
|
|
|
# stringopt2:=value => "an option where the argument is optional and defaults to 'value'"
|
|
|
|
# optalias booltopt3 => "a boolean with a hidden alias. --optalias is not shown in --help"
|
|
|
|
#
|
|
|
|
# Autosetup does no small amount of specialized handling for flags,
|
|
|
|
# especially booleans. Each bool-type --FLAG implicitly gets
|
|
|
|
# --enable-FLAG and --disable-FLAG forms, and explicitly adding flags
|
|
|
|
# with those prefixes will force them to be boolean flags. e.g. we
|
|
|
|
# define a flag "readline", which will be interpreted in one of two
|
|
|
|
# ways, depending on how it's invoked and how its default is defined:
|
|
|
|
#
|
|
|
|
# --enable-readline ==> boolean true
|
|
|
|
# --disable-readline ==> boolean false
|
|
|
|
#
|
|
|
|
# Trying to pass --readline or --readline=1 or --readline=0 will
|
|
|
|
# result in an "unrecognized option" error, despite the the options
|
|
|
|
# call listing the flag as "readline".
|
|
|
|
#
|
|
|
|
# The behavior described above can lead lead to some confusion when
|
|
|
|
# writing help text. For example:
|
|
|
|
#
|
|
|
|
# options { json=1 {Disable JSON functions} }
|
|
|
|
#
|
|
|
|
# The reason the help text says "disable" is because a boolean option
|
|
|
|
# defaulting to true is, in the --help text, rendered as:
|
|
|
|
#
|
|
|
|
# --disable-json Disable JSON functions
|
|
|
|
#
|
|
|
|
# Whereas a bool flag which defaults to false will instead render as:
|
|
|
|
#
|
|
|
|
# --enable-FLAG
|
|
|
|
#
|
|
|
|
# Non-boolean flags, in contrast, use the names specifically given to
|
|
|
|
# them in the 'options' invocation. e.g. "with-tcl" is the --with-tcl
|
|
|
|
# flag. Autosetup may, however, choose to automatically alter the help
|
|
|
|
# text, as demonstrated here:
|
|
|
|
#
|
|
|
|
# options {
|
|
|
|
# readline=1 => {Disable readline support}
|
|
|
|
# with-readline-lib: => {Readline library}
|
|
|
|
# with-readline-inc: => {Readline include paths}
|
|
|
|
# }
|
|
|
|
#
|
|
|
|
# $ ./configure --help | grep readline
|
|
|
|
# --disable-readline disable readline support
|
|
|
|
# --with-readline-lib specify readline library
|
|
|
|
# --with-readline-inc specify readline include paths
|
|
|
|
#
|
|
|
|
# Note that it prefixed and lower-case the help message. Whether
|
|
|
|
# that's a feature or a bug can be debated.
|
|
|
|
#
|
|
|
|
# Fetching values for flags:
|
|
|
|
#
|
|
|
|
# booleans: use one of:
|
|
|
|
# - [opt-bool FLAG] is autosetup's built-in command for this, but we
|
|
|
|
# have some convenience variants:
|
2024-10-28 15:16:50 +01:00
|
|
|
# - [proj-opt-truthy FLAG]
|
|
|
|
# - [proj-opt-if-truthy FLAG {THEN} {ELSE}]
|
2024-10-21 18:06:49 +02:00
|
|
|
#
|
|
|
|
# Non-boolean (i.e. string) flags:
|
2024-10-26 20:17:17 +02:00
|
|
|
# - [opt-val FLAG ?default?]
|
2024-10-21 18:06:49 +02:00
|
|
|
#
|
|
|
|
########################################################################
|
2024-10-26 05:05:20 +02:00
|
|
|
set flags {
|
2024-10-27 23:18:33 +01:00
|
|
|
# <build-modes>
|
2024-09-25 16:38:46 +02:00
|
|
|
with-debug:=1 => {Enable debug build flags}
|
2024-10-27 23:18:33 +01:00
|
|
|
shared=1 => {Disable build of shared libary}
|
|
|
|
static=1 => {Disable build of static library (mostly)}
|
|
|
|
amalgamation=1 => {Disable the amalgamation and instead build all files separately.}
|
|
|
|
# </build-modes>
|
|
|
|
# <lib-feature>
|
|
|
|
threadsafe=1 => {Disable mutexing}
|
|
|
|
with-tempstore:=no => {Use an in-ram database for temporary tables: never,no,yes,always}
|
|
|
|
largefile=1 => {Disable large file support}
|
|
|
|
load-extension=1 => {Disable loading of external extensions}
|
|
|
|
math=1 => {Disable math functions}
|
|
|
|
json=1 => {Disable JSON functions}
|
|
|
|
memsys5 => {Enable MEMSYS5}
|
|
|
|
memsys3 => {Enable MEMSYS3}
|
|
|
|
fts3 => {Enable the FTS3 extension}
|
|
|
|
fts4 => {Enable the FTS4 extension}
|
|
|
|
fts5 => {Enable the FTS5 extension}
|
|
|
|
update-limit => {Enable the UPDATE/DELETE LIMIT clause}
|
|
|
|
geopoly => {Enable the GEOPOLY extension}
|
|
|
|
rtree => {Enable the RTREE extension}
|
|
|
|
session => {Enable the SESSION extension}
|
2024-10-29 05:21:11 +01:00
|
|
|
all => {Enable FTS4, FTS5, Geopoly, RTree, Sessions}
|
2024-10-27 23:18:33 +01:00
|
|
|
# </lib-feature>
|
|
|
|
# <tcl>
|
2024-10-30 06:07:18 +01:00
|
|
|
# --with-tcl=DIR may be either a dir containing tclConfig.sh or a
|
|
|
|
# dir one level up from that from which we can derive a dir
|
|
|
|
# containing tclConfig.sh.
|
|
|
|
with-tcl:DIR => {Root of path containing tclConfig.sh}
|
|
|
|
# If --with-tclsh=X given, it is used for (A) trying to find
|
|
|
|
# tclConfig.sh and (B) all TCL-based code generation. Warning: if
|
|
|
|
# its containing dir has multiple tclsh versions, it may select the
|
|
|
|
# wrong tclConfig.sh!
|
2024-10-09 06:01:14 +02:00
|
|
|
with-tclsh:PATH => {Full pathname of tclsh to use}
|
2024-10-30 06:07:18 +01:00
|
|
|
# --disable-tcl only disables building of the SQLite TCL extension,
|
|
|
|
# not the requirement for TCL. This tree requires TCL for code
|
|
|
|
# generation but can use the in-tree copy of autosetup/jimsh0.c for
|
|
|
|
# that. The SQLite TCL extension and, by extension, the test code
|
|
|
|
# require a canonical tclsh.
|
2024-10-23 03:59:34 +02:00
|
|
|
tcl=1 => {Disable components which require TCL-dev}
|
2024-10-27 23:18:33 +01:00
|
|
|
# <tcl>
|
|
|
|
# <line-editing>
|
2024-09-27 15:29:50 +02:00
|
|
|
readline=1 => {Disable readline support}
|
2024-10-27 21:46:09 +01:00
|
|
|
# --with-readline-lib is a backwards-compatible alias for
|
|
|
|
# --with-readline-ldflags
|
2024-10-27 21:04:23 +01:00
|
|
|
with-readline-lib:
|
2024-10-27 21:46:09 +01:00
|
|
|
with-readline-ldflags:=auto
|
2024-10-27 23:18:33 +01:00
|
|
|
=> {Readline LDFLAGS, e.g. -lreadline -lncurses}
|
2024-10-27 21:46:09 +01:00
|
|
|
# --with-readline-inc is a backwards-compatible alias for
|
2024-10-30 06:07:18 +01:00
|
|
|
# --with-readline-cflags.
|
2024-10-27 21:04:23 +01:00
|
|
|
with-readline-inc:
|
2024-10-27 21:46:09 +01:00
|
|
|
with-readline-cflags:=auto
|
2024-10-27 03:27:07 +01:00
|
|
|
=> {Readline CFLAGS, e.g. -I/path/to/includes}
|
|
|
|
with-readline-header:PATH
|
2024-10-27 21:04:23 +01:00
|
|
|
=> {Full path to readline.h, from which --with-readline-cflags will be derived}
|
2024-10-26 23:51:04 +02:00
|
|
|
with-linenoise:DIR => {Source directory for linenoise.c and linenoise.h}
|
2024-10-27 23:18:33 +01:00
|
|
|
editline=0 => {BSD editline support}
|
|
|
|
# </line-editing>
|
|
|
|
# <icu>
|
2024-10-28 01:56:31 +01:00
|
|
|
with-icu-ldflags:LDFLAGS
|
|
|
|
=> {Enable SQLITE_ENABLE_ICU and add the given linker flags for the ICU libraries}
|
|
|
|
with-icu-config:=auto => {Enable SQLITE_ENABLE_ICU and fetch linker flags from the given icu-config binary}
|
2024-10-29 09:18:45 +01:00
|
|
|
icu-collations=0 => {Enable SQLITE_ENABLE_ICU_COLLATIONS. Requires --with-icu-ldflags=... or --with-icu-config}
|
2024-10-27 23:18:33 +01:00
|
|
|
# </icu>
|
|
|
|
# <alternative-builds>
|
2024-09-25 08:07:54 +02:00
|
|
|
with-wasi-sdk:=/opt/wasi-sdk
|
2024-10-25 15:56:13 +02:00
|
|
|
=> {Top-most dir of the wasi-sdk for a WASI build}
|
2024-09-25 16:38:46 +02:00
|
|
|
with-emsdk:DIR => {Top-most dir of the Emscripten SDK installation}
|
2024-10-27 23:18:33 +01:00
|
|
|
# </alternative-builds>
|
|
|
|
# <developer>
|
|
|
|
test-status => {Enable status of tests}
|
|
|
|
gcov=0 => {Enable coverage testing using gcov}
|
|
|
|
linemacros => {Enable #line macros in the amalgamation.}
|
2024-10-25 15:56:13 +02:00
|
|
|
dump-defines=0 => {Dump autosetup defines to $DUMP_DEFINES_TXT (for build debugging)}
|
2024-10-27 23:18:33 +01:00
|
|
|
# </developer>
|
2024-10-29 19:50:25 +01:00
|
|
|
|
2024-10-26 05:05:20 +02:00
|
|
|
}
|
|
|
|
if {"" ne $DUMP_DEFINES_JSON} {
|
|
|
|
lappend flags \
|
|
|
|
defines-json-include-lowercase=0 \
|
|
|
|
=> {Include lower-case defines (primarily system paths) in $DUMP_DEFINES_JSON}
|
|
|
|
}
|
2024-10-29 19:50:25 +01:00
|
|
|
|
2024-10-26 05:05:20 +02:00
|
|
|
options [subst $flags]
|
|
|
|
unset flags
|
2024-09-24 23:08:49 +02:00
|
|
|
|
2024-10-27 21:14:49 +01:00
|
|
|
#
|
|
|
|
# Carry values from hidden --flag aliases over to their canonical flag
|
2024-10-27 21:04:23 +01:00
|
|
|
# forms.
|
2024-10-27 21:14:49 +01:00
|
|
|
#
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-xfer-options-aliases {
|
2024-10-27 21:04:23 +01:00
|
|
|
with-readline-inc => with-readline-cflags
|
|
|
|
with-readline-lib => with-readline-ldflags
|
|
|
|
}
|
|
|
|
|
2024-10-21 18:06:49 +02:00
|
|
|
set srcdir $::autosetup(srcdir)
|
2024-09-27 03:00:32 +02:00
|
|
|
set top_srcdir [get-define abs_top_srcdir]
|
2024-10-27 08:06:03 +01:00
|
|
|
set PACKAGE_VERSION [readfile $srcdir/VERSION]
|
2024-10-26 00:44:58 +02:00
|
|
|
define PACKAGE_NAME "sqlite"
|
|
|
|
define PACKAGE_URL {https://sqlite.org}
|
|
|
|
define PACKAGE_VERSION $PACKAGE_VERSION
|
|
|
|
define PACKAGE_STRING "[get-define PACKAGE_NAME] $PACKAGE_VERSION"
|
|
|
|
define PACKAGE_BUGREPORT [get-define PACKAGE_URL]/forum
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-27 08:06:03 +01:00
|
|
|
msg-result "srcdir = $srcdir"
|
|
|
|
msg-result "top_srcdir = $top_srcdir"
|
2024-10-28 15:16:50 +01:00
|
|
|
msg-result [proj-bold "Configuring SQLite version $PACKAGE_VERSION"]
|
2024-10-27 08:06:03 +01:00
|
|
|
|
2024-10-28 03:46:57 +01:00
|
|
|
#
|
|
|
|
# SQLITE_AUTORECONFIG contains make target rules for re-running the
|
|
|
|
# configure script with the same arguments it was initially invoked
|
|
|
|
# with. This can be used to automatically reconfigure
|
|
|
|
#
|
|
|
|
define-append SQLITE_AUTORECONFIG cd '$::autosetup(builddir)' && '$top_srcdir/configure'
|
2024-10-27 08:06:03 +01:00
|
|
|
#{*}$::autosetup(argv) breaks with --flag='val with spaces', so...
|
|
|
|
foreach arg $::autosetup(argv) {
|
2024-10-28 03:46:57 +01:00
|
|
|
define-append SQLITE_AUTORECONFIG '$arg'
|
2024-10-27 08:06:03 +01:00
|
|
|
}
|
2024-09-27 03:00:32 +02:00
|
|
|
|
2024-10-27 23:18:33 +01:00
|
|
|
# Are we cross-compiling?
|
2024-10-28 15:16:50 +01:00
|
|
|
set cross_compiling [proj-is-cross-compiling]
|
2024-09-26 00:13:49 +02:00
|
|
|
if {![file exists sqlite3.pc.in]} {
|
2024-10-23 03:18:16 +02:00
|
|
|
msg-result "This appears to be an out-of-tree build."
|
2024-09-26 00:13:49 +02:00
|
|
|
}
|
|
|
|
|
2024-09-26 14:16:46 +02:00
|
|
|
cc-check-tools ld ar
|
|
|
|
|
2024-10-27 23:18:33 +01:00
|
|
|
define OPT_FEATURE_FLAGS {} ; # -DSQLITE_OMIT/ENABLE flags.
|
|
|
|
define OPT_SHELL {} ; # CFLAGS for the sqlite3 CLI app
|
2024-10-09 06:01:14 +02:00
|
|
|
########################################################################
|
2024-10-20 04:47:56 +02:00
|
|
|
# Adds $args, if not empty, to OPT_FEATURE_FLAGS.
|
2024-10-27 23:18:33 +01:00
|
|
|
# If the first arg is -shell then it strips that arg
|
|
|
|
# and passes the remaining args th sqlite-add-shell-opt
|
2024-10-29 04:29:45 +01:00
|
|
|
# in addition to adding them to OPT_FEATURE_FLAGS.
|
2024-10-27 23:18:33 +01:00
|
|
|
proc sqlite-add-feature-flag {args} {
|
|
|
|
set shell ""
|
|
|
|
if {"-shell" eq [lindex $args 0]} {
|
|
|
|
set args [lassign $args shell]
|
|
|
|
}
|
2024-09-27 15:29:50 +02:00
|
|
|
if {"" ne $args} {
|
2024-10-27 23:18:33 +01:00
|
|
|
if {"" ne $shell} {
|
|
|
|
sqlite-add-shell-opt {*}$args
|
|
|
|
}
|
2024-09-27 15:29:50 +02:00
|
|
|
define-append OPT_FEATURE_FLAGS {*}$args
|
2024-09-25 16:38:46 +02:00
|
|
|
}
|
2024-09-25 05:37:34 +02:00
|
|
|
}
|
2024-10-27 23:18:33 +01:00
|
|
|
# Appends $args, if not empty, to OPT_SHELL.
|
|
|
|
proc sqlite-add-shell-opt {args} {
|
2024-09-27 15:29:50 +02:00
|
|
|
if {"" ne $args} {
|
|
|
|
define-append OPT_SHELL {*}$args
|
|
|
|
}
|
|
|
|
}
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-29 19:50:25 +01:00
|
|
|
# Pass msg-debug=1 to configure to enable obnoxiously loud output from
|
|
|
|
# msg-debug.
|
|
|
|
set msgDebugEnabled [proj-val-truthy [get-env msg-debug 0]]
|
|
|
|
proc msg-debug {msg} {
|
|
|
|
if {$::msgDebugEnabled} {
|
|
|
|
puts stderr [proj-bold "** DEBUG: $msg"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-file-extensions
|
2024-09-25 10:04:14 +02:00
|
|
|
if {".exe" eq [get-define TARGET_EXEEXT]} {
|
|
|
|
define SQLITE_OS_UNIX 0
|
|
|
|
define SQLITE_OS_WIN 1
|
2024-10-27 23:18:33 +01:00
|
|
|
# todo? add -DSQLITE_OS_WIN=1 to CFLAGS or CFLAGS_sqlite3_os?
|
2024-09-25 10:04:14 +02:00
|
|
|
} else {
|
|
|
|
define SQLITE_OS_UNIX 1
|
|
|
|
define SQLITE_OS_WIN 0
|
2024-10-27 23:18:33 +01:00
|
|
|
# todo? add -DSQLITE_OS_UNIX=1 to CFLAGS or CFLAGS_sqlite3_os
|
2024-09-25 10:04:14 +02:00
|
|
|
}
|
|
|
|
|
2024-09-25 03:39:39 +02:00
|
|
|
#########
|
|
|
|
# Programs needed
|
2024-10-28 15:16:50 +01:00
|
|
|
if {"" eq [proj-bin-define install]} {
|
|
|
|
proj-warn "Cannot find install binary, so 'make install' will not work."
|
2024-09-25 05:37:34 +02:00
|
|
|
}
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
2024-10-20 04:47:56 +02:00
|
|
|
# We differentiate between two C compilers: the one used for binaries
|
2024-10-29 21:27:36 +01:00
|
|
|
# which are to run on the build system (in autosetup it's called
|
|
|
|
# CC_FOR_BUILD and in Makefile.in it's $(B.cc)) and the one used for
|
|
|
|
# compiling binaries for the target system (CC a.k.a. $(T.cc)).
|
|
|
|
# Normally they're the same, but they will differ when
|
2024-10-20 04:47:56 +02:00
|
|
|
# cross-compiling.
|
2024-10-26 01:04:50 +02:00
|
|
|
define BUILD_CFLAGS [get-env BUILD_CFLAGS {-g}]
|
2024-09-26 14:16:46 +02:00
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
2024-09-25 05:37:34 +02:00
|
|
|
# Handle --with-wasi-sdk=DIR
|
|
|
|
#
|
2024-10-23 04:11:52 +02:00
|
|
|
# This must be early because it may change the toolchain and disable
|
|
|
|
# several config options.
|
2024-10-27 09:29:18 +01:00
|
|
|
proc sqlite-check-wasi-sdk {} {
|
2024-09-25 10:04:14 +02:00
|
|
|
set wasiSdkDir [opt-val with-wasi-sdk] ; # ??? [lindex [opt-val with-wasi-sdk] end]
|
2024-10-23 04:11:52 +02:00
|
|
|
define HAVE_WASI_SDK 0
|
2024-09-25 10:04:14 +02:00
|
|
|
#puts "x wasiSdkDir=$wasiSdkDir foo=[lindex [opt-val with-wasi-sdk] end]"
|
2024-10-23 04:11:52 +02:00
|
|
|
if {$wasiSdkDir eq ""} {
|
|
|
|
return 0
|
|
|
|
} elseif {$::cross_compiling} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "Cannot combine --with-wasi-sdk with cross-compilation"
|
2024-09-25 05:37:34 +02:00
|
|
|
}
|
2024-10-23 04:11:52 +02:00
|
|
|
msg-result "Checking WASI SDK directory \[$wasiSdkDir]... "
|
|
|
|
#puts "prefix = [prefix $wasiSdkDir/bin {clang ld}]"
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-affirm-files-exist -v {*}[prefix "$wasiSdkDir/bin/" {clang wasm-ld}]
|
2024-10-23 04:11:52 +02:00
|
|
|
msg-result "Using wasi-sdk clang, disabling: tcl, CLI shell, DLL, loadable extensions, threading"
|
|
|
|
define HAVE_WASI_SDK 1
|
|
|
|
define WASI_SDK_DIR $wasiSdkDir
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-opt-set load-extension 0 ;# ==> --disable-load-extension
|
|
|
|
proj-opt-set threadsafe 0 ;# ==> --threadsafe=0
|
|
|
|
proj-opt-set tcl 0 ;# ==> --disable-tcl
|
|
|
|
proj-opt-set shared 0 ;# ==> --disable-shared
|
2024-10-23 04:11:52 +02:00
|
|
|
set cross_compiling 1
|
|
|
|
|
|
|
|
# Changing --host and --target have no effect here except to possibly
|
|
|
|
# cause confusion. autoconf has finished processing them by this
|
|
|
|
# point.
|
|
|
|
#
|
|
|
|
# host_alias=wasm32-wasi
|
|
|
|
# target=wasm32-wasi
|
|
|
|
#
|
|
|
|
# Merely changing CC and LD to the wasi-sdk's is enough to get
|
|
|
|
# sqlite3.o building in WASM format.
|
|
|
|
# XXX CC="${wasiSdkDir}/bin/clang"
|
|
|
|
# XXX LD="${wasiSdkDir}/bin/wasm-ld"
|
|
|
|
# XXX RANLIB="${wasiSdkDir}/bin/llvm-ranlib"
|
|
|
|
define CC "${wasiSdkDir}/bin/clang"
|
|
|
|
define LD "${wasiSdkDir}/bin/wasm-ld"
|
|
|
|
#define STRIP "${wasiSdkDir}/bin/strip"
|
|
|
|
return 1
|
2024-10-27 09:29:18 +01:00
|
|
|
}; # sqlite-check-wasi-sdk
|
|
|
|
sqlite-check-wasi-sdk
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
#
|
2024-09-25 20:03:26 +02:00
|
|
|
# Enable large file support (if special flags are necessary)
|
2024-10-26 05:05:20 +02:00
|
|
|
define HAVE_LFS 0
|
|
|
|
if {[opt-bool largefile]} {
|
|
|
|
cc-check-lfs
|
|
|
|
}
|
2024-09-25 20:03:26 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
#
|
2024-09-25 20:03:26 +02:00
|
|
|
# Check for needed/wanted data types
|
2024-10-26 01:25:49 +02:00
|
|
|
cc-with {-includes stdint.h} \
|
|
|
|
{cc-check-types int8_t int16_t int32_t int64_t intptr_t \
|
|
|
|
uint8_t uint16_t uint32_t uint64_t uintptr_t}
|
2024-09-25 20:03:26 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
#
|
2024-09-27 15:29:50 +02:00
|
|
|
# Check for needed/wanted functions
|
2024-09-25 20:03:26 +02:00
|
|
|
cc-check-functions gmtime_r isnan localtime_r localtime_s \
|
|
|
|
malloc_usable_size strchrnul usleep utime pread pread64 pwrite pwrite64
|
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-check-function-in-lib fdatasync rt
|
2024-09-25 20:03:26 +02:00
|
|
|
define LDFLAGS_FDATASYNC [get-define lib_fdatasync]
|
|
|
|
undefine lib_fdatasync
|
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
#
|
2024-09-25 20:03:26 +02:00
|
|
|
# Check for needed/wanted headers
|
2024-09-27 03:00:32 +02:00
|
|
|
cc-check-includes \
|
|
|
|
sys/types.h sys/stat.h dlfcn.h unistd.h \
|
|
|
|
stdlib.h malloc.h memory.h \
|
|
|
|
string.h strings.h \
|
2024-10-26 01:25:49 +02:00
|
|
|
inttypes.h
|
2024-09-27 03:00:32 +02:00
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
if {[cc-check-includes zlib.h] && [proj-check-function-in-lib deflate z]} {
|
2024-09-26 00:13:49 +02:00
|
|
|
# TODO: port over the more sophisticated zlib search from the fossil auto.def
|
2024-10-29 04:29:45 +01:00
|
|
|
define HAVE_ZLIB 1
|
2024-09-25 20:03:26 +02:00
|
|
|
define LDFLAGS_ZLIB -lz
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-shell-opt -DSQLITE_HAVE_ZLIB=1
|
2024-09-25 20:03:26 +02:00
|
|
|
} else {
|
|
|
|
define HAVE_ZLIB 0
|
|
|
|
define LDFLAGS_ZLIB ""
|
|
|
|
}
|
|
|
|
|
2024-10-29 04:29:45 +01:00
|
|
|
proj-check-rpath; # Determine proper rpath-handling flags.
|
2024-10-27 08:06:03 +01:00
|
|
|
|
2024-10-29 04:29:45 +01:00
|
|
|
proj-define-if-opt-truthy shared ENABLE_SHARED "Build shared library?"
|
2024-10-27 09:29:18 +01:00
|
|
|
|
2024-10-29 05:21:11 +01:00
|
|
|
if {![proj-define-if-opt-truthy static ENABLE_STATIC \
|
|
|
|
"Build static library?"]} {
|
|
|
|
proj-warn "Static lib build may be implicitly re-activated by other components, e.g. some test apps."
|
|
|
|
}
|
2024-10-27 09:52:20 +01:00
|
|
|
|
2024-10-29 04:29:45 +01:00
|
|
|
proj-define-if-opt-truthy amalgamation USE_AMALGAMATION "Use amalgamation for builds?"
|
2024-09-27 15:29:50 +02:00
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-define-if-opt-truthy gcov USE_GCOV "Use gcov?"
|
2024-09-27 15:29:50 +02:00
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-define-if-opt-truthy test-status TSTRNNR_OPTS \
|
2024-09-26 00:13:49 +02:00
|
|
|
"test-runner flags:" {--status} {}
|
2024-09-27 15:29:50 +02:00
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-define-if-opt-truthy linemacros AMALGAMATION_LINE_MACROS \
|
2024-10-19 02:49:01 +02:00
|
|
|
"Use #line macros in the amalgamation:"
|
2024-09-27 15:29:50 +02:00
|
|
|
|
2024-10-29 04:29:45 +01:00
|
|
|
msg-checking "SQLITE_DEBUG build? "
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy with-debug {
|
2024-09-26 10:25:10 +02:00
|
|
|
define SQLITE_DEBUG 1
|
2024-10-19 20:31:47 +02:00
|
|
|
define TARGET_DEBUG {-g -DSQLITE_DEBUG=1 -DSQLITE_ENABLE_SELECTTRACE -DSQLITE_ENABLE_WHERETRACE -O0 -Wall}
|
2024-09-26 10:25:10 +02:00
|
|
|
msg-result yes
|
|
|
|
} {
|
|
|
|
define TARGET_DEBUG {-DNDEBUG}
|
|
|
|
msg-result no
|
|
|
|
}
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
|
|
|
# TCL...
|
2024-10-09 06:01:14 +02:00
|
|
|
#
|
2024-10-27 06:28:52 +01:00
|
|
|
# sqlite-check-tcl performs most of the --with-tcl and --with-tclsh
|
2024-10-09 09:12:32 +02:00
|
|
|
# handling. Some related bits and pieces are performed before and
|
|
|
|
# after that function is called.
|
|
|
|
#
|
|
|
|
# Important [define]'d vars:
|
|
|
|
#
|
|
|
|
# - HAVE_TCL indicates whether we have a tclsh suitable for building
|
|
|
|
# the TCL SQLite extension and, by extension, the testing
|
|
|
|
# infrastructure. This must only be 1 for environments where
|
|
|
|
# tclConfig.sh can be found.
|
|
|
|
#
|
2024-10-19 22:53:46 +02:00
|
|
|
# - TCLSH_CMD is the path to the canonical tclsh or "". It never
|
|
|
|
# refers to jimtcl.
|
2024-10-09 09:12:32 +02:00
|
|
|
#
|
|
|
|
# - TCL_CONFIG_SH is the path to tclConfig.sh or "".
|
|
|
|
#
|
|
|
|
# - TCLLIBDIR is the dir to which libtclsqlite3 gets installed.
|
|
|
|
#
|
2024-10-19 22:53:46 +02:00
|
|
|
# - TCLLIB_RPATH = the -rpath flag specific to libtclsqlite3, which
|
|
|
|
# will usually differ from the rpath used by the rest of the lib.
|
2024-10-09 09:12:32 +02:00
|
|
|
#
|
2024-10-18 00:19:37 +02:00
|
|
|
# - BTCLSH = the path to the tcl interpreter used for in-tree code
|
2024-10-19 22:53:46 +02:00
|
|
|
# generation. It may be jimtcl or the canonical tclsh but may not
|
|
|
|
# be empty - this tree requires TCL to generated numerous
|
|
|
|
# components.
|
|
|
|
#
|
2024-10-27 06:28:52 +01:00
|
|
|
proc sqlite-check-tcl {} {
|
2024-10-30 06:07:18 +01:00
|
|
|
define TCLSH_CMD false ; # Significant is that it exits with non-0
|
|
|
|
define HAVE_TCL 0 ; # Will be enabled via --tcl or a successful search
|
|
|
|
define TCLLIBDIR "" ; # Installation dir for TCL extension lib
|
|
|
|
define TCLLIB_RPATH "" ; # rpath for TCL extension lib
|
|
|
|
define TCL_CONFIG_SH ""; # full path to tclConfig.sh
|
2024-10-27 09:10:56 +01:00
|
|
|
if {![opt-bool tcl]} {
|
2024-10-30 06:07:18 +01:00
|
|
|
msg-result "TCL disabled via --disable-tcl. Will not be able to run tests."
|
2024-10-27 09:10:56 +01:00
|
|
|
return
|
|
|
|
}
|
2024-10-30 06:07:18 +01:00
|
|
|
# TODO: document the steps this is taking.
|
2024-10-09 06:01:14 +02:00
|
|
|
global top_srcdir
|
2024-10-27 09:10:56 +01:00
|
|
|
msg-result "Checking for a suitable tcl... "
|
2024-10-30 06:07:18 +01:00
|
|
|
proj-assert {proj-opt-truthy tcl}
|
|
|
|
set use_tcl 1
|
2024-09-27 03:00:32 +02:00
|
|
|
set with_tclsh [opt-val with-tclsh]
|
|
|
|
set with_tcl [opt-val with-tcl]
|
2024-10-29 19:50:25 +01:00
|
|
|
msg-debug "sqlite-check-tcl: use_tcl ${use_tcl}"
|
|
|
|
msg-debug "sqlite-check-tcl: with_tclsh=${with_tclsh}"
|
|
|
|
msg-debug "sqlite-check-tcl: with_tcl=$with_tcl"
|
2024-09-27 03:00:32 +02:00
|
|
|
if {"" eq $with_tclsh && "" eq $with_tcl} {
|
2024-10-30 06:07:18 +01:00
|
|
|
# If neither --with-tclsh nor --with-tcl are provided, try to find
|
|
|
|
# a workable tclsh.
|
2024-10-28 15:16:50 +01:00
|
|
|
set with_tclsh [proj-first-bin-of tclsh9.0 tclsh8.6 tclsh]
|
2024-10-29 19:50:25 +01:00
|
|
|
msg-debug "sqlite-check-tcl: with_tclsh=${with_tclsh}"
|
2024-09-27 03:00:32 +02:00
|
|
|
}
|
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
if {"" ne $with_tclsh} {
|
2024-10-30 06:07:18 +01:00
|
|
|
# --with-tclsh was provided. Validate it and use it to trump any
|
|
|
|
# value passed via --with-tcl=DIR.
|
2024-10-09 06:01:14 +02:00
|
|
|
if {![file isfile $with_tclsh]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "TCL shell $with_tclsh is not a file"
|
2024-10-22 05:12:11 +02:00
|
|
|
} elseif {![file-isexec $with_tclsh]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "TCL shell $with_tclsh is not executable"
|
2024-10-09 06:01:14 +02:00
|
|
|
} else {
|
|
|
|
define TCLSH_CMD $with_tclsh
|
2024-10-29 05:21:11 +01:00
|
|
|
#msg-result "Using tclsh: $with_tclsh"
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
2024-10-30 06:07:18 +01:00
|
|
|
if {[catch {exec $with_tclsh $top_srcdir/tool/find_tclconfig.tcl} result] == 0} {
|
|
|
|
set with_tcl $result
|
|
|
|
}
|
|
|
|
if {"" ne $with_tcl && [file isdir $with_tcl]} {
|
|
|
|
msg-result "$with_tclsh recommends the tclConfig.sh from $with_tcl"
|
|
|
|
} else {
|
|
|
|
proj-warn "$with_tclsh is unable to recommand a tclConfig.sh"
|
|
|
|
set use_tcl 0
|
2024-09-27 03:00:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
set cfg ""
|
2024-10-16 16:04:00 +02:00
|
|
|
set tclSubdirs {tcl9.0 tcl8.6 lib}
|
2024-10-23 03:59:34 +02:00
|
|
|
while {1} {
|
|
|
|
if {$use_tcl} {
|
|
|
|
if {"" ne $with_tcl} {
|
2024-10-30 06:07:18 +01:00
|
|
|
# Ensure that we can find tclConfig.sh under ${with_tcl}/...
|
2024-10-23 03:59:34 +02:00
|
|
|
if {[file readable "${with_tcl}/tclConfig.sh"]} {
|
|
|
|
set cfg "${with_tcl}/tclConfig.sh"
|
|
|
|
} else {
|
|
|
|
foreach i $tclSubdirs {
|
|
|
|
if {[file readable "${with_tcl}/$i/tclConfig.sh"]} {
|
|
|
|
set cfg "${with_tcl}/$i/tclConfig.sh"
|
|
|
|
break
|
|
|
|
}
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-23 03:59:34 +02:00
|
|
|
if {"" eq $cfg} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "No tclConfig.sh found under ${with_tcl}"
|
2024-10-23 03:59:34 +02:00
|
|
|
}
|
2024-10-09 06:01:14 +02:00
|
|
|
} else {
|
2024-10-30 06:07:18 +01:00
|
|
|
# If we have not yet found a tclConfig.sh file, look in
|
|
|
|
# $libdir which is set automatically by autosetup or by the
|
|
|
|
# --prefix command-line option. See
|
|
|
|
# https://sqlite.org/forum/forumpost/e04e693439a22457
|
2024-10-23 03:59:34 +02:00
|
|
|
set libdir [get-define libdir]
|
|
|
|
if {[file readable "${libdir}/tclConfig.sh"]} {
|
|
|
|
set cfg "${libdir}/tclConfig.sh"
|
|
|
|
} else {
|
|
|
|
foreach i $tclSubdirs {
|
|
|
|
if {[file readable "${libdir}/$i/tclConfig.sh"]} {
|
|
|
|
set cfg "${libdir}/$i/tclConfig.sh"
|
|
|
|
break
|
|
|
|
}
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-23 03:59:34 +02:00
|
|
|
if {![file readable $cfg]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-indented-notice {
|
2024-10-27 06:28:52 +01:00
|
|
|
WARNING: Cannot find a usable tclConfig.sh file. Use
|
|
|
|
--with-tcl=DIR to specify a directory where tclConfig.sh
|
|
|
|
can be found. SQLite does not use TCL internally, but TCL
|
|
|
|
is required for testing.
|
2024-10-23 03:59:34 +02:00
|
|
|
}
|
|
|
|
break
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-23 03:59:34 +02:00
|
|
|
msg-result "Using tclConfig.sh: $cfg"
|
|
|
|
} else {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-warn "Unable to run tests because no tclConfig.sh file could be located"
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
2024-10-23 03:59:34 +02:00
|
|
|
break
|
2024-10-09 06:01:14 +02:00
|
|
|
}
|
2024-09-27 03:00:32 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
define TCL_CONFIG_SH $cfg
|
2024-10-30 06:07:18 +01:00
|
|
|
# Export a subset of tclConfig.sh to the current TCL-space. If the
|
2024-10-21 18:06:49 +02:00
|
|
|
# config is not available, this emits empty-string entries for the
|
|
|
|
# various options we're interested in.
|
2024-10-30 06:07:18 +01:00
|
|
|
eval [exec "${top_srcdir}/tool/tclConfigShToTcl.sh" "$cfg"]
|
2024-10-16 16:04:00 +02:00
|
|
|
|
|
|
|
if {"" eq $with_tclsh} {
|
2024-10-30 06:07:18 +01:00
|
|
|
proj-assert {expr {$cfg ne ""}}
|
|
|
|
proj-assert {expr {"" ne [get-define TCL_EXEC_PREFIX]}}
|
2024-10-16 16:04:00 +02:00
|
|
|
set with_tclsh [get-define TCL_EXEC_PREFIX]/bin/tclsh[get-define TCL_VERSION]
|
2024-10-22 05:12:11 +02:00
|
|
|
if {![file-isexec $with_tclsh]} {
|
2024-10-16 16:04:00 +02:00
|
|
|
set with_tclsh2 [get-define TCL_EXEC_PREFIX]/bin/tclsh
|
2024-10-22 05:12:11 +02:00
|
|
|
if {![file-isexec $with_tclsh2]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-warn "Cannot find a usable tclsh (tried: $with_tclsh $with_tclsh2)"
|
2024-10-16 16:04:00 +02:00
|
|
|
} else {
|
|
|
|
set with_tclsh $with_tclsh2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
define TCLSH_CMD $with_tclsh
|
2024-10-30 06:07:18 +01:00
|
|
|
proj-assert {expr {( $cfg eq "" && 0 == $use_tcl ) \
|
|
|
|
|| ( $cfg ne "" && 1 == $use_tcl )}}
|
|
|
|
if {$use_tcl} {
|
|
|
|
# Set up the TCLLIBDIR and TCLLIB_RPATH
|
|
|
|
#
|
2024-10-28 19:30:46 +01:00
|
|
|
# 2024-10-28: calculation of TCLLIBDIR is now done via the shell
|
2024-10-30 03:06:41 +01:00
|
|
|
# in the main.mk (search it for T.tcllibdir) so that
|
|
|
|
# static/hand-written makefiles which import main.mk do not have
|
|
|
|
# to define that before importing main.mk. Even so, we export
|
2024-10-30 06:07:18 +01:00
|
|
|
# TCLLIBDIR from here for the benefit of those who want to provide
|
2024-10-30 03:06:41 +01:00
|
|
|
# it at configure-time and have it "stick", without having to
|
|
|
|
# provide it on each make invocation or set it in their
|
|
|
|
# environment.
|
2024-10-30 06:07:18 +01:00
|
|
|
set tcllibdir [get-env TCLLIBDIR ""]
|
|
|
|
if {"" eq $tcllibdir} {
|
|
|
|
# Attempt to extract TCLLIBDIR from TCL's $auto_path
|
|
|
|
if {[catch {exec echo "puts stdout \$auto_path" | "$with_tclsh"} result] == 0} {
|
|
|
|
foreach i $result {
|
|
|
|
if {[file isdir $i]} {
|
|
|
|
set tcllibdir $i/sqlite3
|
|
|
|
break
|
2024-10-09 09:12:32 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-30 06:07:18 +01:00
|
|
|
} else {
|
|
|
|
proj-warn "Cannot determine TCLLIBDIR"
|
2024-10-09 09:12:32 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-30 06:07:18 +01:00
|
|
|
set tclrpath ""
|
|
|
|
if {"" ne $tcllibdir} {
|
|
|
|
set rp [get-define SH_LINKRPATH]
|
|
|
|
set tclrpath [string map [list "%s" $tcllibdir] $rp]
|
|
|
|
# Reminder: tclConfig.sh has TCL_LD_SEARCH_FLAGS to set the
|
|
|
|
# rpath but (A) it includes an unexpand var ref to
|
|
|
|
# ${LIB_RUNTIME_DIR}, which must be set in the makefile and (B)
|
|
|
|
# that flag is inherently compiler-dependent so it's not as
|
|
|
|
# portable as tclConfig.sh assumes. We'll instead use the rpath
|
|
|
|
# flag which autosetup determines for the current compiler.
|
|
|
|
}
|
|
|
|
define TCLLIBDIR $tcllibdir
|
|
|
|
define TCLLIB_RPATH $tclrpath
|
|
|
|
#msg-debug "TCLLIB_RPATH = [get-define TCLLIB_RPATH]"
|
2024-10-28 19:30:46 +01:00
|
|
|
}; # find TCLLIBDIR
|
2024-10-16 16:04:00 +02:00
|
|
|
|
2024-10-23 03:59:34 +02:00
|
|
|
if {[file exists $with_tclsh]} {
|
2024-10-23 03:18:16 +02:00
|
|
|
msg-result "Using tclsh: $with_tclsh"
|
2024-10-23 03:59:34 +02:00
|
|
|
define HAVE_TCL 1
|
|
|
|
} else {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-warn "Cannot find a usable tclsh, so cannot run tests."
|
2024-10-09 09:12:32 +02:00
|
|
|
}
|
2024-10-27 06:28:52 +01:00
|
|
|
}; # sqlite-check-tcl
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-27 06:28:52 +01:00
|
|
|
sqlite-check-tcl
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
########################################################################
|
2024-10-29 21:27:36 +01:00
|
|
|
# sqlite-determine-codegen-tcl checks which TCL to use as a code
|
|
|
|
# generator. By default, prefer jimsh simply because we have it
|
|
|
|
# in-tree (it's part of autosetup) unless --with-tclsh=X is used, in
|
|
|
|
# which case prefix X.
|
2024-10-29 04:29:45 +01:00
|
|
|
#
|
|
|
|
# Returns the name of the TCL it selects. Fails fatally if it cannot
|
|
|
|
# detect a TCL appropriate for code generation.
|
2024-10-29 21:27:36 +01:00
|
|
|
#
|
|
|
|
# Defines:
|
|
|
|
#
|
|
|
|
# - BTCLSH = the TCL shell used for code generation. It may set this
|
|
|
|
# to an unexpanded makefile var name.
|
|
|
|
#
|
|
|
|
# - CFLAGS_JIMSH = any flags needed for buildng a BTCLSH-compatible
|
|
|
|
# jimsh.
|
2024-10-29 19:50:25 +01:00
|
|
|
proc sqlite-determine-codegen-tcl {} {
|
2024-10-29 04:29:45 +01:00
|
|
|
msg-result "Checking for TCL to use for code generation... "
|
|
|
|
define CFLAGS_JIMSH {}
|
|
|
|
set cgtcl [opt-val with-tclsh jimsh]
|
|
|
|
if {"jimsh" ne $cgtcl} {
|
|
|
|
# When --with-tclsh=X is used, use that for all TCL purposes,
|
|
|
|
# including in-tree code generation, per developer request.
|
2024-10-26 01:13:12 +02:00
|
|
|
define BTCLSH "\$(TCLSH_CMD)"
|
|
|
|
} else {
|
2024-10-29 04:29:45 +01:00
|
|
|
# These headers are technically optional for JimTCL but necessary if
|
|
|
|
# we want to use it for code generation:
|
|
|
|
set sysh [cc-check-includes dirent.h sys/time.h]
|
|
|
|
if {$sysh && [cc-check-functions realpath]} {
|
|
|
|
define-append CFLAGS_JIMSH -DHAVE_REALPATH
|
|
|
|
define BTCLSH "\$(JIMSH)"
|
|
|
|
} elseif {$sysh && [cc-check-functions _fullpath]} {
|
|
|
|
# _fullpath() is a Windows API
|
|
|
|
define-append CFLAGS_JIMSH -DHAVE__FULLPATH
|
|
|
|
define BTCLSH "\$(JIMSH)"
|
|
|
|
} elseif {[file exists [get-define TCLSH_CMD]]} {
|
|
|
|
set cgtcl [get-define TCLSH_CMD]
|
|
|
|
define BTCLSH "\$(TCLSH_CMD)"
|
|
|
|
} else {
|
|
|
|
# One last-ditch effort to find TCLSH_CMD: use info from
|
|
|
|
# tclConfig.sh to try to find a tclsh
|
|
|
|
if {"" eq [get-define TCLSH_CMD]} {
|
|
|
|
set tpre [get-define TCL_EXEC_PREFIX]
|
|
|
|
if {"" ne $tpre} {
|
|
|
|
set tv [get-define TCL_VERSION]
|
|
|
|
if {[file-isexec "${tpre}/bin/tclsh${tv}"]} {
|
|
|
|
define TCLSH_CMD "${tpre}/bin/tclsh${tv}"
|
|
|
|
} elseif {[file-isexec "${tpre}/bin/tclsh"]} {
|
|
|
|
define TCLSH_CMD "${tpre}/bin/tclsh"
|
|
|
|
}
|
2024-10-26 01:13:12 +02:00
|
|
|
}
|
2024-10-09 06:27:03 +02:00
|
|
|
}
|
2024-10-29 04:29:45 +01:00
|
|
|
set cgtcl [get-define TCLSH_CMD]
|
|
|
|
if {![file exists $cgtcl]} {
|
|
|
|
proj-fatal "Cannot find a tclsh to use for code generation."
|
|
|
|
}
|
|
|
|
define BTCLSH "\$(TCLSH_CMD)"
|
2024-10-26 01:13:12 +02:00
|
|
|
}
|
2024-10-23 03:59:34 +02:00
|
|
|
}
|
2024-10-29 04:29:45 +01:00
|
|
|
return $cgtcl
|
2024-10-29 19:50:25 +01:00
|
|
|
}; # sqlite-determine-codegen-tcl
|
|
|
|
msg-result "TCL for code generation: [sqlite-determine-codegen-tcl]"
|
2024-10-09 06:01:14 +02:00
|
|
|
# /TCL
|
|
|
|
########################################################################
|
2024-09-30 16:33:36 +02:00
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
|
|
|
# Thread safety?
|
2024-09-25 16:58:09 +02:00
|
|
|
msg-checking "Support threadsafe operation? "
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy threadsafe {
|
2024-09-25 16:38:46 +02:00
|
|
|
msg-result yes
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag -DSQLITE_THREADSAFE=1
|
2024-10-28 15:16:50 +01:00
|
|
|
if {![proj-check-function-in-lib pthread_create pthread]
|
|
|
|
|| ![proj-check-function-in-lib pthread_mutexattr_init pthread]} {
|
2024-09-25 20:03:26 +02:00
|
|
|
user-error "Missing required pthread bits"
|
|
|
|
}
|
|
|
|
define LDFLAGS_PTHREAD [get-define lib_pthread_create]
|
|
|
|
undefine lib_pthread_create
|
2024-09-25 16:38:46 +02:00
|
|
|
} {
|
|
|
|
msg-result no
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag -DSQLITE_THREADSAFE=0
|
2024-09-25 20:03:26 +02:00
|
|
|
define LDFLAGS_PTHREAD ""
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
2024-09-25 16:38:46 +02:00
|
|
|
# Do we want temporary databases in memory?
|
|
|
|
#
|
2024-09-25 09:30:54 +02:00
|
|
|
if {1} {
|
2024-09-25 14:16:13 +02:00
|
|
|
set ts [opt-val with-tempstore no]
|
2024-09-25 09:30:54 +02:00
|
|
|
set tsn 1
|
|
|
|
msg-checking "Use an in-ram database for temporary tables? "
|
|
|
|
switch -- $ts {
|
|
|
|
never { set tsn 0 }
|
|
|
|
no { set tsn 1 }
|
|
|
|
yes { set tsn 2 }
|
|
|
|
always { set tsn 3 }
|
|
|
|
default {
|
2024-09-25 16:38:46 +02:00
|
|
|
user-error "Invalid with-tempstore value \[$ts]. Use one of: never, no, yes, always"
|
2024-09-25 09:30:54 +02:00
|
|
|
}
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
2024-09-25 09:30:54 +02:00
|
|
|
msg-result $ts
|
|
|
|
define TEMP_STORE $tsn
|
|
|
|
unset ts tsn
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
|
|
|
|
2024-10-26 20:17:17 +02:00
|
|
|
########################################################################
|
2024-10-27 05:27:47 +01:00
|
|
|
# sqlite-check-line-editing jumps through proverbial hoops to try to
|
2024-10-26 23:51:04 +02:00
|
|
|
# find a working line-editing library, setting:
|
2024-10-26 20:17:17 +02:00
|
|
|
#
|
2024-10-26 23:51:04 +02:00
|
|
|
# - HAVE_READLINE to 0 or 1
|
|
|
|
# - HAVE_LINENOISE to 0 or 1
|
|
|
|
# - HAVE_EDITLINE to 0 or 1
|
2024-10-26 20:17:17 +02:00
|
|
|
#
|
2024-10-27 06:28:52 +01:00
|
|
|
# Only one of ^^^ those will be set to 1.
|
|
|
|
#
|
2024-10-26 23:51:04 +02:00
|
|
|
# - LDFLAGS_READLINE = linker flags or empty string
|
|
|
|
#
|
2024-10-29 04:29:45 +01:00
|
|
|
# - CFLAGS_READLINE = compilation flags for clients or empty string.
|
2024-10-26 20:17:17 +02:00
|
|
|
#
|
2024-10-26 23:51:04 +02:00
|
|
|
# Note that LDFLAGS_READLINE and CFLAGS_READLINE may refer to
|
2024-10-29 21:27:36 +01:00
|
|
|
# linenoise or editline, not necessarily libreadline. In some cases
|
|
|
|
# it will set HAVE_READLINE=1 when it's really using editline, for
|
|
|
|
# reasons described in this function's comments.
|
2024-10-26 23:51:04 +02:00
|
|
|
#
|
|
|
|
# Returns a string describing which line-editing approach to use, or
|
|
|
|
# "none" if no option is available.
|
2024-10-29 09:42:06 +01:00
|
|
|
#
|
|
|
|
# Order of checks:
|
|
|
|
#
|
|
|
|
# 1) --with-linenoise trumps all others
|
|
|
|
#
|
|
|
|
# 2) --editline trumps --readline
|
|
|
|
#
|
|
|
|
# 3) --disable-readline trumps --readline
|
|
|
|
#
|
|
|
|
# 4) Default to automatic search for optional readline
|
|
|
|
#
|
|
|
|
# 5) Try to find readline resp. editline. If it's not found AND the
|
|
|
|
# corresponding --FEATURE flag was explicitly given, fail fatally,
|
|
|
|
# else fail silently.
|
2024-10-27 05:27:47 +01:00
|
|
|
proc sqlite-check-line-editing {} {
|
2024-10-27 23:18:33 +01:00
|
|
|
msg-result "Checking for line-editing capability..."
|
2024-10-26 20:34:39 +02:00
|
|
|
define HAVE_READLINE 0
|
2024-10-26 23:51:04 +02:00
|
|
|
define HAVE_LINENOISE 0
|
|
|
|
define HAVE_EDITLINE 0
|
2024-10-26 20:34:39 +02:00
|
|
|
define LDFLAGS_READLINE ""
|
|
|
|
define CFLAGS_READLINE ""
|
2024-10-29 21:27:36 +01:00
|
|
|
set failIfNotFound 0 ; # Set to 1 for explicit --FEATURE requests
|
|
|
|
set libsForReadline {readline edit} ; # -l<LIB> names to check for readline().
|
|
|
|
# The libedit check changes this.
|
2024-10-29 09:01:56 +01:00
|
|
|
set editLibName "readline" ; # "readline" or "editline"
|
|
|
|
set editLibDef "HAVE_READLINE" ; # "HAVE_READLINE" or "HAVE_EDITLINE"
|
2024-10-29 21:27:36 +01:00
|
|
|
set dirLn [opt-val with-linenoise]
|
|
|
|
if {"" ne $dirLn} {
|
|
|
|
# Use linenoise from a copy of its sources (not a library)...
|
2024-10-26 23:51:04 +02:00
|
|
|
if {![file isdir $dirLn]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "--with-linenoise value is not a directory"
|
2024-10-27 05:27:47 +01:00
|
|
|
} elseif {![file exists $dirLn/linenoise.c] } {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "Cannot find linenoise.c in $dirLn"
|
2024-10-27 05:27:47 +01:00
|
|
|
} elseif {![file exists $dirLn/linenoise.h] } {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "Cannot find linenoise.h in $dirLn"
|
2024-10-26 23:51:04 +02:00
|
|
|
}
|
2024-10-27 23:18:33 +01:00
|
|
|
msg-result "Using linenoise from $dirLn"
|
2024-10-30 15:03:56 +01:00
|
|
|
if {[file exists $dirLn/linenoise-ship.c]} {
|
|
|
|
# HAVE_LINENOISE==2 means that the linenoise completion callback has an
|
|
|
|
# extra userdata argument.
|
|
|
|
define CFLAGS_READLINE "-I$dirLn $dirLn/linenoise-ship.c"
|
|
|
|
define HAVE_LINENOISE 2
|
|
|
|
sqlite-add-shell-opt -DHAVE_LINENOISE=2
|
|
|
|
} else {
|
|
|
|
# HAVE_LINENOISE==1 is the original Antirez linenoise
|
|
|
|
define CFLAGS_READLINE "-I$dirLn $dirLn/linenoise.c"
|
|
|
|
define HAVE_LINENOISE 1
|
|
|
|
sqlite-add-shell-opt -DHAVE_LINENOISE=1
|
|
|
|
}
|
2024-10-26 23:51:04 +02:00
|
|
|
return "linenoise"
|
|
|
|
} elseif {[opt-bool editline]} {
|
2024-10-29 21:27:36 +01:00
|
|
|
# libedit mimics libreadline and on some systems does not have its
|
|
|
|
# own header installed (instead, that of libreadline is used).
|
2024-10-27 06:28:52 +01:00
|
|
|
#
|
2024-10-29 09:01:56 +01:00
|
|
|
# shell.c historically expects HAVE_EDITLINE to be set for
|
|
|
|
# libedit, but it then expects to see <editline/readline.h>, which
|
2024-10-29 21:27:36 +01:00
|
|
|
# some system's don't actually have, despite having libedit. If
|
|
|
|
# we end up finding <editline/readline.h> below, we will use
|
2024-10-29 09:14:34 +01:00
|
|
|
# -DHAVE_EDITLINE=1, else we will use -DHAVE_READLINE=1. In either
|
|
|
|
# case, we will link against libedit.
|
2024-10-29 09:42:06 +01:00
|
|
|
set failIfNotFound 1
|
2024-10-29 09:01:56 +01:00
|
|
|
set libsForReadline {edit}
|
|
|
|
set editLibName editline
|
2024-10-26 23:51:04 +02:00
|
|
|
} elseif {![opt-bool readline]} {
|
2024-10-27 23:18:33 +01:00
|
|
|
msg-result "Readline support explicitly disabled with --disable-readline"
|
2024-10-26 23:51:04 +02:00
|
|
|
return "none"
|
2024-10-29 09:42:06 +01:00
|
|
|
} elseif {[proj-opt-was-provided readline]} {
|
2024-10-29 21:27:36 +01:00
|
|
|
# If an explicit --[enable-]readline was used, fail if it's not
|
|
|
|
# found, else treat the feature as optional.
|
2024-10-29 09:42:06 +01:00
|
|
|
set failIfNotFound 1
|
2024-10-26 20:34:39 +02:00
|
|
|
}
|
2024-10-27 05:27:47 +01:00
|
|
|
|
2024-10-27 21:04:23 +01:00
|
|
|
# Transform with-readline-header=X to with-readline-cflags=-I...
|
2024-10-27 05:27:47 +01:00
|
|
|
set v [opt-val with-readline-header]
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-opt-set with-readline-header ""
|
2024-10-27 05:27:47 +01:00
|
|
|
if {"" ne $v} {
|
|
|
|
if {"auto" eq $v} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-opt-set with-readline-cflags auto
|
2024-10-26 20:17:17 +02:00
|
|
|
} else {
|
|
|
|
set v [file dirname $v]
|
2024-10-29 09:01:56 +01:00
|
|
|
if {[string match */readline $v]} {
|
|
|
|
# Special case: if the path includes .../readline/readline.h, set
|
2024-10-26 20:17:17 +02:00
|
|
|
# the -I to one dir up from that because our sources include
|
|
|
|
# <readline/readline.h> or <editline/readline.h>. Reminder: if
|
|
|
|
# auto.def is being run by jimsh0 then [file normalize] will not
|
|
|
|
# work!
|
|
|
|
set v [file dirname $v]
|
|
|
|
}
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-opt-set with-readline-cflags "-I$v"
|
2024-10-26 20:17:17 +02:00
|
|
|
}
|
2024-10-27 05:27:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Look for readline.h
|
2024-10-27 21:04:23 +01:00
|
|
|
set rlInc [opt-val with-readline-cflags auto]
|
2024-10-27 05:27:47 +01:00
|
|
|
if {"auto" eq $rlInc} {
|
|
|
|
set rlInc ""
|
2024-10-29 09:01:56 +01:00
|
|
|
if {$::cross_compiling} {
|
2024-10-29 21:27:36 +01:00
|
|
|
# ^^^ this check is derived from the legacy configure script.
|
2024-10-29 09:01:56 +01:00
|
|
|
proj-warn "Skipping check for readline.h because we're cross-compiling."
|
|
|
|
} else {
|
|
|
|
set dirs "[get-define prefix] /usr /usr/local /usr/local/readline /usr/contrib /mingw"
|
|
|
|
set subdirs "include/$editLibName"
|
2024-10-29 21:27:36 +01:00
|
|
|
if {"editline" eq $editLibName} {
|
2024-10-29 09:01:56 +01:00
|
|
|
lappend subdirs include/readline
|
|
|
|
# ^^^ editline, on some systems, does not have its own header,
|
|
|
|
# and uses libreadline's header.
|
|
|
|
}
|
|
|
|
lappend subdirs include
|
|
|
|
# ^^^ The dirs and subdirs lists are, except for the inclusion
|
|
|
|
# of $prefix and editline, from the legacy configure script
|
2024-10-28 15:16:50 +01:00
|
|
|
set rlInc [proj-search-for-header-dir readline.h \
|
2024-10-29 09:01:56 +01:00
|
|
|
-dirs $dirs -subdirs $subdirs]
|
2024-10-27 05:27:47 +01:00
|
|
|
if {"" ne $rlInc} {
|
2024-10-29 09:01:56 +01:00
|
|
|
if {[string match */readline $rlInc]} {
|
|
|
|
set rlInc [file dirname $rlInc]; # shell #include's <readline/readline.h>
|
|
|
|
} elseif {[string match */editline $rlInc]} {
|
|
|
|
set editLibDef HAVE_EDITLINE
|
|
|
|
set rlInc [file dirname $rlInc]; # shell #include's <editline/readline.h>
|
2024-10-27 05:27:47 +01:00
|
|
|
}
|
|
|
|
set rlInc "-I${rlInc}"
|
|
|
|
}
|
|
|
|
}
|
2024-10-30 00:19:29 +01:00
|
|
|
} elseif {"" ne $rlInc && ![string match *-I* $rlInc]} {
|
2024-10-30 00:42:24 +01:00
|
|
|
proj-fatal "Argument to --with-readline-cflags is intended to be CFLAGS and contain -I..."
|
2024-10-27 05:27:47 +01:00
|
|
|
}
|
|
|
|
|
2024-10-29 21:27:36 +01:00
|
|
|
# If readline.h was found/specified, look for lib(readline|edit)...
|
|
|
|
#
|
|
|
|
# This is not quite straightforward because both libreadline and
|
|
|
|
# libedit typically require some other library which (according to
|
|
|
|
# legacy autotools-generated tests) provides tgetent(3). On some
|
|
|
|
# systems that's built into libreadline/edit, on some (most?) its in
|
|
|
|
# lib[n]curses, and on some it's in libtermcap.
|
2024-10-27 05:27:47 +01:00
|
|
|
set rlLib ""
|
|
|
|
if {"" ne $rlInc} {
|
2024-10-27 21:04:23 +01:00
|
|
|
set rlLib [opt-val with-readline-ldflags]
|
2024-10-27 05:27:47 +01:00
|
|
|
if {"" eq $rlLib || "auto" eq $rlLib} {
|
|
|
|
set rlLib ""
|
|
|
|
set libTerm ""
|
2024-10-29 09:01:56 +01:00
|
|
|
if {[proj-check-function-in-lib tgetent "$editLibName ncurses curses termcap"]} {
|
2024-10-27 05:27:47 +01:00
|
|
|
# ^^^ that libs list comes from the legacy configure script ^^^
|
|
|
|
set libTerm [get-define lib_tgetent]
|
|
|
|
undefine lib_tgetent
|
|
|
|
}
|
2024-10-29 09:01:56 +01:00
|
|
|
if {$editLibName eq $libTerm} {
|
2024-10-27 05:27:47 +01:00
|
|
|
set rlLib $libTerm
|
2024-10-29 09:01:56 +01:00
|
|
|
} elseif {[proj-check-function-in-lib readline $libsForReadline $libTerm]} {
|
2024-10-27 05:27:47 +01:00
|
|
|
set rlLib [get-define lib_readline]
|
|
|
|
lappend rlLib $libTerm
|
|
|
|
undefine lib_readline
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-29 21:27:36 +01:00
|
|
|
# If we found a library, configure the build to use it...
|
2024-10-27 05:27:47 +01:00
|
|
|
if {"" ne $rlLib} {
|
2024-10-29 09:01:56 +01:00
|
|
|
if {"editline" eq $editLibName && "HAVE_READLINE" eq $editLibDef} {
|
|
|
|
proj-indented-notice {
|
2024-10-29 21:27:36 +01:00
|
|
|
NOTE: the local libedit but uses <readline/readline.h> so we
|
|
|
|
will compile with -DHAVE_READLINE=1 but will link with
|
2024-10-29 09:01:56 +01:00
|
|
|
libedit.
|
|
|
|
}
|
|
|
|
}
|
2024-10-27 05:27:47 +01:00
|
|
|
set rlLib [join $rlLib]
|
|
|
|
set rlInc [join $rlInc]
|
|
|
|
define LDFLAGS_READLINE $rlLib
|
|
|
|
define CFLAGS_READLINE $rlInc
|
2024-10-29 09:14:34 +01:00
|
|
|
proj-assert {expr {$editLibDef in {HAVE_READLINE HAVE_EDITLINE}}}
|
|
|
|
proj-assert {expr {$editLibName in {readline editline}}}
|
2024-10-29 09:01:56 +01:00
|
|
|
sqlite-add-shell-opt -D${editLibDef}=1
|
|
|
|
msg-result "Using $editLibName flags: $rlInc $rlLib"
|
2024-10-29 21:27:36 +01:00
|
|
|
# Check whether rl_completion_matches() has a signature we can use
|
|
|
|
# and disable that sub-feature if it doesn't.
|
2024-10-29 09:01:56 +01:00
|
|
|
if {![cctest \
|
|
|
|
-cflags "$rlInc -D${editLibDef}" -libs $rlLib -nooutput 1 -source {
|
2024-10-27 19:46:11 +01:00
|
|
|
#include <stdio.h>
|
2024-10-29 09:01:56 +01:00
|
|
|
#ifdef HAVE_EDITLINE
|
|
|
|
#include <editline/readline.h>
|
|
|
|
#else
|
2024-10-27 19:46:11 +01:00
|
|
|
#include <readline/readline.h>
|
2024-10-29 09:01:56 +01:00
|
|
|
#endif
|
2024-10-29 20:03:22 +01:00
|
|
|
static char * rcg(const char *z, int i){(void)z; (void)i; return 0;}
|
2024-10-27 19:46:11 +01:00
|
|
|
int main(void) {
|
|
|
|
char ** x = rl_completion_matches("one", rcg);
|
2024-10-29 20:03:22 +01:00
|
|
|
(void)x;
|
2024-10-27 19:46:11 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}]} {
|
2024-10-29 09:01:56 +01:00
|
|
|
user-notice "WARNING: readline-style completion disabled due to rl_completion_matches() signature mismatch"
|
2024-10-27 23:34:07 +01:00
|
|
|
show-notices
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-shell-opt -DSQLITE_OMIT_READLINE_COMPLETION
|
2024-10-27 19:46:11 +01:00
|
|
|
}
|
2024-10-29 09:01:56 +01:00
|
|
|
return $editLibName
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
2024-10-26 23:51:04 +02:00
|
|
|
|
2024-10-29 09:42:06 +01:00
|
|
|
if {$failIfNotFound} {
|
|
|
|
proj-fatal "Explicit --$editLibName failed to find a matching library."
|
|
|
|
}
|
|
|
|
|
2024-10-26 23:51:04 +02:00
|
|
|
return "none"
|
2024-10-27 05:27:47 +01:00
|
|
|
}; # sqlite-check-line-editing
|
|
|
|
msg-result "Line-editing support for the sqlite3 shell: [sqlite-check-line-editing]"
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy load-extension {
|
|
|
|
if {[proj-check-function-in-lib dlopen dl]} {
|
2024-09-25 05:37:34 +02:00
|
|
|
define LDFLAGS_DLOPEN [get-define lib_dlopen]
|
2024-09-25 20:03:26 +02:00
|
|
|
undefine lib_dlopen
|
2024-09-25 05:37:34 +02:00
|
|
|
} else {
|
|
|
|
user-error "dlopen() not found. Use --disable-load-extension to bypass this check."
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
2024-09-25 05:37:34 +02:00
|
|
|
} {
|
|
|
|
define LDFLAGS_DLOPEN ""
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag {-DSQLITE_OMIT_LOAD_EXTENSION=1}
|
2024-09-25 05:37:34 +02:00
|
|
|
msg-result "Disabling loadable extensions."
|
|
|
|
}
|
|
|
|
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy math {
|
|
|
|
if {![proj-check-function-in-lib ceil m]} {
|
2024-09-25 05:37:34 +02:00
|
|
|
user-error "Cannot find libm functions. Use --disable-math to bypass this."
|
|
|
|
}
|
|
|
|
define LDFLAGS_MATH [get-define lib_ceil]
|
|
|
|
undefine lib_ceil
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag {-DSQLITE_ENABLE_MATH_FUNCTIONS}
|
2024-09-30 19:44:41 +02:00
|
|
|
msg-result "Enabling math SQL functions [get-define LDFLAGS_MATH]"
|
2024-09-25 05:37:34 +02:00
|
|
|
} {
|
|
|
|
define LDFLAGS_MATH ""
|
2024-09-25 06:20:58 +02:00
|
|
|
msg-result "Disabling math SQL functions"
|
2024-09-25 05:37:34 +02:00
|
|
|
}
|
|
|
|
|
2024-10-27 08:06:03 +01:00
|
|
|
########################################################################
|
2024-10-27 23:18:33 +01:00
|
|
|
# ICU - International Components for Unicode
|
2024-10-28 01:56:31 +01:00
|
|
|
#
|
|
|
|
# Handles these flags:
|
|
|
|
#
|
|
|
|
# --with-icu-ldflags=LDFLAGS
|
|
|
|
# --with-icu-config[=/path/to/icu-config]
|
|
|
|
# --enable-icu-collations
|
|
|
|
#
|
|
|
|
# If both icu-ldflags and icu-config are provided, they are
|
2024-10-29 21:27:36 +01:00
|
|
|
# cumulative. If neither are provided, icu-collations is not honored
|
2024-10-28 01:56:31 +01:00
|
|
|
# and a warning is emitted if it is provided.
|
|
|
|
#
|
|
|
|
# Design note: though we can automatically enable ICU if the
|
|
|
|
# icu-config binary is found, we specifically do not. ICU is always an
|
|
|
|
# opt-in feature.
|
|
|
|
proc sqlite-check-icu {} {
|
|
|
|
define LDFLAGS_ICU [join [opt-val with-icu-ldflags ""]]
|
2024-10-27 08:06:03 +01:00
|
|
|
# Flags sets seen in the wild for ICU:
|
2024-10-27 23:18:33 +01:00
|
|
|
# - -licui18n -licuuc -licudata
|
|
|
|
# - -licui18n -licuuc
|
|
|
|
# - /usr/local/bin/icu-config --ldflags
|
2024-10-28 15:16:50 +01:00
|
|
|
if {[proj-opt-was-provided with-icu-config]} {
|
2024-10-28 01:56:31 +01:00
|
|
|
set bin [opt-val with-icu-config]
|
|
|
|
if {"auto" eq $bin} {
|
2024-10-28 15:16:50 +01:00
|
|
|
set bin [proj-first-bin-of \
|
2024-10-28 01:56:31 +01:00
|
|
|
[get-define prefix]/bin/icu-config \
|
|
|
|
/usr/local/bin/icu-config \
|
|
|
|
/usr/bin/icu-config]
|
|
|
|
if {"" eq $bin} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "--with-icu-config=auto cannot find icu-config binary"
|
2024-10-28 01:56:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if {[file-isexec $bin]} {
|
|
|
|
set x [exec $bin --ldflags]
|
|
|
|
if {"" eq $x} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "$bin --ldflags returned no data"
|
2024-10-28 01:56:31 +01:00
|
|
|
}
|
|
|
|
define-append LDFLAGS_ICU $x
|
|
|
|
} else {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-fatal "--with-icu-config=$bin does not refer to an executable"
|
2024-10-28 01:56:31 +01:00
|
|
|
}
|
2024-10-27 08:06:03 +01:00
|
|
|
}
|
2024-10-28 01:56:31 +01:00
|
|
|
set flags [define LDFLAGS_ICU [string trim [get-define LDFLAGS_ICU]]]
|
|
|
|
if {"" ne $flags} {
|
|
|
|
sqlite-add-feature-flag -shell -DSQLITE_ENABLE_ICU
|
|
|
|
msg-result "Enabling ICU support with libs: $flags"
|
|
|
|
if {[opt-bool icu-collations]} {
|
|
|
|
msg-result "Enabling ICU collations."
|
|
|
|
sqlite-add-feature-flag -shell -DSQLITE_ENABLE_ICU_COLLATIONS
|
|
|
|
# Recall that shell.c builds with sqlite3.c
|
|
|
|
}
|
|
|
|
} elseif {[opt-bool icu-collations]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-warn "ignoring --enable-icu-collations because neither --with-icu-ldflags nor --with-icu-config provided any linker flags"
|
2024-10-28 01:56:31 +01:00
|
|
|
} else {
|
|
|
|
msg-result "ICU support is disabled."
|
|
|
|
}
|
|
|
|
}; # sqlite-check-icu
|
|
|
|
sqlite-check-icu
|
2024-10-27 08:06:03 +01:00
|
|
|
|
2024-10-29 21:27:36 +01:00
|
|
|
########################################################################
|
|
|
|
# Emscripten SDK for building the web-based wasm components.
|
|
|
|
#
|
|
|
|
proc sqlite-check-emsdk {} {
|
|
|
|
set emccsh $::srcdir/tool/emcc.sh
|
|
|
|
if {![get-define HAVE_WASI_SDK] && [proj-check-emsdk]} {
|
|
|
|
define EMCC_WRAPPER $emccsh
|
|
|
|
proj-make-from-dot-in $emccsh
|
|
|
|
catch {exec chmod u+x $emccsh}
|
|
|
|
} else {
|
|
|
|
define EMCC_WRAPPER ""
|
|
|
|
file delete -force $emccsh
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sqlite-check-emsdk
|
|
|
|
|
2024-10-09 07:28:29 +02:00
|
|
|
########################################################################
|
|
|
|
# Check for log(3) in libm and die with an error if it is not
|
2024-10-29 21:27:36 +01:00
|
|
|
# found. $featureName should be the feature name which requires that
|
|
|
|
# function (it's used only in error messages). defines LDFLAGS_MATH to
|
|
|
|
# the required linker flags (which may be empty even if the math APIs
|
|
|
|
# are found, depending on the OS).
|
|
|
|
proc affirm-have-math {featureName} {
|
2024-10-28 15:16:50 +01:00
|
|
|
if {![msg-quiet proj-check-function-in-lib log m]} {
|
2024-10-29 21:27:36 +01:00
|
|
|
user-error "Missing math APIs for $featureName"
|
2024-09-25 16:58:09 +02:00
|
|
|
}
|
|
|
|
define LDFLAGS_MATH [get-define lib_log ""]
|
2024-10-09 07:28:29 +02:00
|
|
|
undefine lib_log
|
2024-09-25 16:58:09 +02:00
|
|
|
}
|
|
|
|
|
2024-09-25 16:38:46 +02:00
|
|
|
########################################################################
|
|
|
|
# Handle various SQLITE_ENABLE_... feature flags.
|
2024-10-27 23:18:33 +01:00
|
|
|
msg-result "Feature flags..."
|
2024-09-25 16:38:46 +02:00
|
|
|
foreach {boolFlag featureFlag ifSetEvalThis} {
|
2024-09-25 16:58:09 +02:00
|
|
|
all {} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-opt-set fts4
|
|
|
|
proj-opt-set fts5
|
|
|
|
proj-opt-set geopoly
|
|
|
|
proj-opt-set rtree
|
|
|
|
proj-opt-set session
|
2024-09-25 16:58:09 +02:00
|
|
|
}
|
2024-10-09 07:28:29 +02:00
|
|
|
fts4 -DSQLITE_ENABLE_FTS4 {affirm-have-math fts4}
|
|
|
|
fts5 -DSQLITE_ENABLE_FTS5 {affirm-have-math fts5}
|
2024-10-28 15:16:50 +01:00
|
|
|
geopoly -DSQLITE_ENABLE_GEOPOLY {proj-opt-set rtree}
|
2024-09-25 16:38:46 +02:00
|
|
|
rtree -DSQLITE_ENABLE_RTREE {}
|
|
|
|
session {-DSQLITE_ENABLE_SESSION -DSQLITE_ENABLE_PREUPDATE_HOOK} {}
|
|
|
|
update-limit -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT {}
|
2024-10-27 08:06:03 +01:00
|
|
|
memsys5 -DSQLITE_ENABLE_MEMSYS5 {}
|
2024-09-25 16:38:46 +02:00
|
|
|
memsys3 {} {
|
|
|
|
if {[opt-bool memsys5]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-warn "not enabling memsys3 because memsys5 is enabled."
|
2024-10-27 08:06:03 +01:00
|
|
|
expr 0
|
2024-09-25 16:38:46 +02:00
|
|
|
} else {
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag -DSQLITE_ENABLE_MEMSYS3
|
2024-09-25 16:38:46 +02:00
|
|
|
}
|
|
|
|
}
|
2024-09-25 06:20:58 +02:00
|
|
|
} {
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy $boolFlag {
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag $featureFlag
|
2024-10-27 08:06:03 +01:00
|
|
|
if {0 != [eval $ifSetEvalThis] && "all" ne $boolFlag} {
|
2024-10-27 23:34:07 +01:00
|
|
|
msg-result " + $boolFlag"
|
2024-10-09 07:28:29 +02:00
|
|
|
}
|
2024-09-27 14:15:14 +02:00
|
|
|
} {
|
2024-10-27 23:34:07 +01:00
|
|
|
if {"all" ne $boolFlag} {
|
|
|
|
msg-result " - $boolFlag"
|
|
|
|
}
|
2024-09-25 06:20:58 +02:00
|
|
|
}
|
2024-09-25 08:07:54 +02:00
|
|
|
}
|
|
|
|
|
2024-09-30 19:44:41 +02:00
|
|
|
########################################################################
|
2024-10-09 06:01:14 +02:00
|
|
|
# Invert the above loop's logic for some explicit SQLITE_OMIT_...
|
2024-10-27 23:18:33 +01:00
|
|
|
# cases. If config option $boolFlag is set, [sqlite-add-feature-flag
|
2024-10-09 06:01:14 +02:00
|
|
|
# $featureFlag], where $featureFlag is intended to be
|
|
|
|
# -DSQLITE_OMIT_...
|
2024-09-30 19:44:41 +02:00
|
|
|
foreach {boolFlag featureFlag} {
|
|
|
|
json -DSQLITE_OMIT_JSON
|
|
|
|
} {
|
2024-10-28 15:16:50 +01:00
|
|
|
if {[proj-opt-truthy $boolFlag]} {
|
2024-10-27 23:34:07 +01:00
|
|
|
msg-result " + $boolFlag"
|
2024-09-30 19:44:41 +02:00
|
|
|
} else {
|
2024-10-27 23:18:33 +01:00
|
|
|
sqlite-add-feature-flag $featureFlag
|
2024-10-27 23:34:07 +01:00
|
|
|
msg-result " - $boolFlag"
|
2024-09-30 19:44:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-27 08:06:03 +01:00
|
|
|
#########################################################################
|
|
|
|
# Show the final feature flag sets:
|
|
|
|
set oFF [get-define OPT_FEATURE_FLAGS]
|
|
|
|
if {"" ne $oFF} {
|
|
|
|
define OPT_FEATURE_FLAGS [lsort -unique $oFF]
|
|
|
|
msg-result "Library feature flags: [get-define OPT_FEATURE_FLAGS]"
|
|
|
|
}
|
|
|
|
set oFF [get-define OPT_SHELL]
|
|
|
|
if {"" ne $oFF} {
|
|
|
|
define OPT_SHELL [lsort -unique $oFF]
|
|
|
|
msg-result "Shell options: [get-define OPT_SHELL]"
|
|
|
|
}
|
|
|
|
unset oFF
|
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
2024-09-27 05:16:01 +02:00
|
|
|
# Maybe extend JimTCL a bit. As of this writing (2024-09-27) it only
|
2024-10-09 06:01:14 +02:00
|
|
|
# needs (-DHAVE_REALPATH or -DHAVE__FULLPATH) and -DHAVE_DIRENT_H to
|
|
|
|
# be compatible with our code generators. It can, however, be slightly
|
|
|
|
# extended via easy-to-detect features, should we need them.
|
2024-09-27 05:16:01 +02:00
|
|
|
if {0 && "" ne [get-define CFLAGS_JIMSH]} {
|
2024-09-27 05:04:16 +02:00
|
|
|
foreach jimFunc {opendir fsync isascii} {
|
|
|
|
if {[cc-check-functions $jimFunc]} {
|
|
|
|
define-append CFLAGS_JIMSH -DHAVE_[string toupper $jimFunc]
|
|
|
|
}
|
|
|
|
}
|
2024-10-09 06:01:14 +02:00
|
|
|
#These are hard-coded into jimsh0.c, so we must not -D them:
|
2024-09-27 05:04:16 +02:00
|
|
|
#foreach jimDef {HAVE_UNISTD_H HAVE_DIRENT_H} {
|
|
|
|
# if {[is-defined $jimDef]} {
|
|
|
|
# define-append CFLAGS_JIMSH -D$jimDef
|
|
|
|
# }
|
|
|
|
#}
|
|
|
|
define-append CFLAGS_JIMSH -DHAVE_LONG_LONG; # SQLite relies on long long, so we know it's available
|
|
|
|
}; # JimTCL
|
2024-09-25 16:38:46 +02:00
|
|
|
|
2024-09-27 05:04:16 +02:00
|
|
|
########################################################################
|
2024-09-25 16:38:46 +02:00
|
|
|
# Generate the output files.
|
|
|
|
#
|
2024-10-26 20:17:17 +02:00
|
|
|
# Potential TODO (unclear): in sqlite3.pc.in, do we need to include
|
|
|
|
# any CFLAGS_READLINE, CFLAGS_ZLIB, etc in its "Cflags:" section?
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-make-from-dot-in -touch Makefile sqlite3.pc
|
2024-10-20 03:09:51 +02:00
|
|
|
if {0} {
|
|
|
|
# Requires a hand-written sqlite_cfg.h.in...
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-make-from-dot-in sqlite_cfg.h
|
2024-10-20 03:09:51 +02:00
|
|
|
# vs...
|
|
|
|
} else {
|
|
|
|
# Requires no input template...
|
|
|
|
make-config-header sqlite_cfg.h \
|
|
|
|
-bare {SIZEOF_* HAVE_DECL_*} \
|
2024-10-28 03:46:57 +01:00
|
|
|
-none {HAVE_CFLAG_* LDFLAGS_* SH_* SQLITE_AUTORECONFIG
|
2024-10-21 18:06:49 +02:00
|
|
|
TARGET_* USE_GCOV TCL_*} \
|
2024-10-20 03:09:51 +02:00
|
|
|
-auto {HAVE_* PACKAGE_*} \
|
|
|
|
-none *
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-touch sqlite_cfg.h ; # help avoid frequent unnecessary @SQLITE_AUTORECONFIG@
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|
2024-10-28 15:16:50 +01:00
|
|
|
#TODO proj-make-from-dot-in ext/wasm/GNUmakefile
|
2024-09-25 03:39:39 +02:00
|
|
|
|
2024-10-26 05:05:20 +02:00
|
|
|
if {"" ne $DUMP_DEFINES_JSON} {
|
|
|
|
########################################################################
|
|
|
|
# Dump config-defines.json...
|
|
|
|
# Demonstrate (mis?)handling of spaces in JSON-export array values:
|
|
|
|
# define-append OPT_FOO.list {"-DFOO=bar baz" -DBAR="baz barre"}
|
|
|
|
define OPT_FEATURE_FLAGS.list [get-define OPT_FEATURE_FLAGS]
|
|
|
|
define OPT_SHELL.list [get-define OPT_SHELL]
|
|
|
|
set dumpDefsOpt {
|
|
|
|
-bare {SIZEOF_* HAVE_DECL_*}
|
2024-10-28 03:46:57 +01:00
|
|
|
-none {HAVE_CFLAG_* LDFLAGS_* SH_* SQLITE_AUTORECONFIG TARGET_* USE_GCOV TCL_*}
|
2024-10-26 05:05:20 +02:00
|
|
|
-array {*.list}
|
|
|
|
-auto {OPT_* PACKAGE_* HAVE_*}
|
|
|
|
}
|
|
|
|
if {[opt-bool defines-json-include-lowercase]} {
|
2024-10-28 15:16:50 +01:00
|
|
|
lappend dumpDefsOpt -none {lib_*} ; # remnants from proj-check-function-in-lib and friends
|
2024-10-26 05:05:20 +02:00
|
|
|
lappend dumpDefsOpt -auto {[a-z]*}
|
|
|
|
}
|
|
|
|
lappend dumpDefsOpt -none *
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-dump-defs-json $DUMP_DEFINES_JSON {*}$dumpDefsOpt
|
2024-10-26 05:05:20 +02:00
|
|
|
undefine OPT_FEATURE_FLAGS.list
|
|
|
|
undefine OPT_SHELL.list
|
2024-10-25 06:39:14 +02:00
|
|
|
}
|
2024-10-25 05:18:11 +02:00
|
|
|
|
2024-10-09 06:01:14 +02:00
|
|
|
########################################################################
|
|
|
|
# Some build-dev/debug-only output
|
2024-10-28 15:16:50 +01:00
|
|
|
proj-if-opt-truthy dump-defines {
|
2024-10-27 23:18:33 +01:00
|
|
|
msg-result "--dump-defines is creating $::DUMP_DEFINES_TXT"
|
|
|
|
make-config-header $::DUMP_DEFINES_TXT \
|
2024-09-30 16:33:36 +02:00
|
|
|
-bare {SQLITE_OS* SQLITE_DEBUG USE_*} \
|
|
|
|
-str {BIN_* CC LD AR LDFLAG* OPT_*} \
|
2024-09-25 16:58:09 +02:00
|
|
|
-auto {*}
|
2024-09-25 10:04:14 +02:00
|
|
|
# achtung: ^^^^ whichever SQLITE_OS_foo flag which is set to 0 will
|
|
|
|
# get _undefined_ here unless it's part of the -bare set.
|
2024-09-26 00:13:49 +02:00
|
|
|
if {0} {
|
2024-09-26 14:16:46 +02:00
|
|
|
foreach x [all-defines] {
|
2024-09-26 00:13:49 +02:00
|
|
|
puts "\t$x"
|
|
|
|
}
|
|
|
|
}
|
2024-09-25 03:39:39 +02:00
|
|
|
}
|