forked from mirror/go-sqlite3
Merge pull request #299 from shaxbee/master
Build and docs for libsqlite3 on OS X
This commit is contained in:
commit
467f50b0c0
|
@ -35,6 +35,11 @@ FAQ
|
||||||
|
|
||||||
Use `go build --tags "libsqlite3 linux"`
|
Use `go build --tags "libsqlite3 linux"`
|
||||||
|
|
||||||
|
* Want to build go-sqlite3 with libsqlite3 on OS X.
|
||||||
|
|
||||||
|
Install sqlite3 from homebrew: `brew install sqlite3`
|
||||||
|
Use `go build --tags "libsqlite3 darwin"`
|
||||||
|
|
||||||
* Want to build go-sqlite3 with icu extension.
|
* Want to build go-sqlite3 with icu extension.
|
||||||
|
|
||||||
Use `go build --tags "icu"`
|
Use `go build --tags "icu"`
|
||||||
|
|
|
@ -8,6 +8,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#cgo CFLAGS: -DUSE_LIBSQLITE3
|
#cgo CFLAGS: -DUSE_LIBSQLITE3
|
||||||
#cgo LDFLAGS: -lsqlite3
|
#cgo linux LDFLAGS: -lsqlite3
|
||||||
|
#cgo darwin LDFLAGS: -L/usr/local/opt/sqlite/lib -lsqlite3
|
||||||
*/
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
|
|
|
@ -17,3 +17,7 @@ import (
|
||||||
func (c *SQLiteConn) loadExtensions(extensions []string) error {
|
func (c *SQLiteConn) loadExtensions(extensions []string) error {
|
||||||
return errors.New("Extensions have been disabled for static builds")
|
return errors.New("Extensions have been disabled for static builds")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *SQLiteConn) LoadExtension(lib string, entry string) error {
|
||||||
|
return errors.New("Extensions have been disabled for static builds")
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue