sqlite3_other.go 396 B

12345678910111213141516171819
  1. // Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
  2. //
  3. // Use of this source code is governed by an MIT-style
  4. // license that can be found in the LICENSE file.
  5. //go:build !windows
  6. // +build !windows
  7. package sqlite3
  8. /*
  9. #cgo CFLAGS: -I.
  10. #cgo linux LDFLAGS: -ldl
  11. #cgo linux,ppc LDFLAGS: -lpthread
  12. #cgo linux,ppc64 LDFLAGS: -lpthread
  13. #cgo linux,ppc64le LDFLAGS: -lpthread
  14. */
  15. import "C"