Merge pull request #299 from shaxbee/master

Build and docs for libsqlite3 on OS X
type
mattn 2016-04-19 10:33:13 +09:00
commit 467f50b0c0
3 changed files with 11 additions and 1 deletions

View File

@ -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"`

View File

@ -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"

View File

@ -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")
}