diff options
author | Dustin Ward <wardddustin@gmail.com> | 2024-04-30 13:15:32 -0400 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2024-05-01 22:59:32 +0900 |
commit | 3c0390b77cba9a7eaee4102e1ca6a35c14e2de7c (patch) | |
tree | 6f18c1a911c91beb59c90ee574791cefcba13be6 /sqlite3_libsqlite3.go | |
parent | fix: some typos (diff) | |
download | golite-3c0390b77cba9a7eaee4102e1ca6a35c14e2de7c.tar.gz golite-3c0390b77cba9a7eaee4102e1ca6a35c14e2de7c.tar.xz |
add support for libsqlite3 on z/OS
Diffstat (limited to 'sqlite3_libsqlite3.go')
-rw-r--r-- | sqlite3_libsqlite3.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlite3_libsqlite3.go b/sqlite3_libsqlite3.go index 95cc7c0..6ef2308 100644 --- a/sqlite3_libsqlite3.go +++ b/sqlite3_libsqlite3.go @@ -18,5 +18,6 @@ package sqlite3 #cgo openbsd LDFLAGS: -lsqlite3 #cgo solaris LDFLAGS: -lsqlite3 #cgo windows LDFLAGS: -lsqlite3 +#cgo zos LDFLAGS: -lsqlite3 */ import "C" |