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