go-sqlite3-hak5/sqlite3_other.go

18 lines
376 B
Go
Raw Normal View History

2019-11-18 09:03:31 +00:00
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
2014-08-18 07:56:31 +00:00
//
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file.
2012-10-28 02:58:40 +00:00
// +build !windows
package sqlite3
2012-10-28 02:58:40 +00:00
/*
2013-08-30 13:43:00 +00:00
#cgo CFLAGS: -I.
2013-08-29 02:06:36 +00:00
#cgo linux LDFLAGS: -ldl
2018-06-20 14:37:11 +00:00
#cgo linux,ppc LDFLAGS: -lpthread
#cgo linux,ppc64 LDFLAGS: -lpthread
#cgo linux,ppc64le LDFLAGS: -lpthread
2012-10-28 02:58:40 +00:00
*/
import "C"