From c7f1ec84eba5213ef5927b8c6300f43c47884da1 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Fri, 4 Oct 2024 18:28:34 -0300 Subject: Remove support for dynamically loading extensions Defer to the user to (statically) include the extension with the rest of the code, and manually registering it, as described in [0]. If support for dynamic libraries and run-time dynamism in general is desired, one shouldn't be looking for it in C or Go, who aren't the greatest bastions of such dynamism, and instead consider more appropriate languages, like Common Lisp or Smalltalk. [0]: https://sqlite.org/loadext.html#statically_linking_a_run_time_loadable_extension --- mkdeps.sh | 1 - 1 file changed, 1 deletion(-) (limited to 'mkdeps.sh') diff --git a/mkdeps.sh b/mkdeps.sh index 1ff0acb..92427c6 100755 --- a/mkdeps.sh +++ b/mkdeps.sh @@ -4,7 +4,6 @@ set -eu export LANG=POSIX.UTF-8 -find tests/functional/*.go -not -name extension.go | varlist 'functional-tests-butone.go' find tests/functional/*.go | varlist 'functional-tests.go' find tests/fuzz/*.go | varlist 'fuzz-targets.go' find tests/benchmarks/*.go | varlist 'benchmarks.go' -- cgit v1.2.3