2019-11-18 12:03:31 +03:00
|
|
|
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
2015-08-20 03:02:59 +03:00
|
|
|
//
|
|
|
|
// Use of this source code is governed by an MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2018-05-27 01:05:45 +03:00
|
|
|
|
2024-01-25 16:36:27 +03:00
|
|
|
//go:build sqlite_icu || icu
|
2018-05-24 12:55:02 +03:00
|
|
|
// +build sqlite_icu icu
|
2015-08-20 03:02:59 +03:00
|
|
|
|
|
|
|
package sqlite3
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo LDFLAGS: -licuuc -licui18n
|
|
|
|
#cgo CFLAGS: -DSQLITE_ENABLE_ICU
|
2023-02-23 08:00:03 +03:00
|
|
|
#cgo darwin,amd64 CFLAGS: -I/usr/local/opt/icu4c/include
|
|
|
|
#cgo darwin,amd64 LDFLAGS: -L/usr/local/opt/icu4c/lib
|
|
|
|
#cgo darwin,arm64 CFLAGS: -I/opt/homebrew/opt/icu4c/include
|
|
|
|
#cgo darwin,arm64 LDFLAGS: -L/opt/homebrew/opt/icu4c/lib
|
2018-05-30 16:44:54 +03:00
|
|
|
#cgo openbsd LDFLAGS: -lsqlite3
|
2015-08-20 03:02:59 +03:00
|
|
|
*/
|
|
|
|
import "C"
|