aboutsummaryrefslogtreecommitdiff
path: root/sqlite3_libsqlite3.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build with "go tool" and hackishly bundle code from same package into one ↵EuAndreh2024-08-121-23/+0
| | | | file each
* add support for libsqlite3 on z/OSDustin Ward2024-05-011-0/+1
|
* go fmt ./...Yasuhiro Matsumoto2024-01-251-0/+1
|
* Add build tags to support both x86 and ARM compilation on macOS (#1069)Denis Dmitriev2023-02-231-2/+4
| | | | | | | | | | | | | * Add build tags to support both x86 and ARM compilation on macOS * Documentation fix: command line for build under macOS * Global replace 'macOS X' -> 'macOS'. Fix typo in -tags cmd line param * `README.md`: fix all `--tags` -> `-tags` --------- Co-authored-by: Denis Dmitriev <dmitriev@itspartner.net>
* Add Github Actions yaml and set LDFLAGS on windows (#843)raa01212020-08-251-0/+1
| | | and remove .travis.yml
* Add build constraints for non cgoYasuhiro Matsumoto2019-11-181-1/+1
|
* darwin/libsqlite3: Also use the homebrew include pathGeorge Dunlap2019-08-191-0/+1
| | | | | | | | | | | | | | | When building on darwin with the `libsqlite3` tag, go-sqlite3 adds the homebrew library path. It does not, however, add the homebrew include path, which means that the MacOS sqlite3 header is used instead. On my system, this results in build errors that look like this: ./sqlite3_load_extension.go:25:8: could not determine kind of name for C.sqlite3_enable_load_extension ./sqlite3_load_extension.go:33:8: could not determine kind of name for C.sqlite3_load_extension Add the homebrew include path as well, so that he header matches the libraries we're using. Signed-off-by: George Dunlap <george.dunlap@citrix.com>
* Add: OpenBSDGert-Jan Timmer2018-06-131-0/+1
| | | Fixes #321
* fmt updateGert-Jan Timmer2018-05-271-0/+1
| | | | | | Fix: Placed all +build tags in the same location Fix: Split CFLAGS, LDFLAGS into seperate lines for readability and lookup Fix: Placed empty line between copyright comments and build tags for readability Fix: Placed OS specfic cgo flags at the end if the cgo sections contains multiple lines.
* support SolarisYasuhiro Matsumoto2017-08-301-0/+1
| | | | See #459
* Disable LoadExtension when omit_load_extension is specifiedZbigniew Mandziejewicz2016-04-181-1/+2
|
* Disable LoadExtension when omit_load_extension is specifiedZbigniew Mandziejewicz2016-04-181-1/+1
|
* hack to use libsqlite3Yasuhiro Matsumoto2015-06-121-0/+13
$ go build -tags "libsqlite3 windows"