mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 05:51:33 -05:00
See https://github.com/mattn/go-sqlite3/issues/1164 Co-authored-by: André Duffeck <andre.duffeck@firondu.de>
18 lines
385 B
Go
18 lines
385 B
Go
// Copyright (C) 2019 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
|
|
//
|
|
// Use of this source code is governed by an MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build windows
|
|
|
|
package sqlite3
|
|
|
|
/*
|
|
#cgo CFLAGS: -I.
|
|
#cgo CFLAGS: -fno-stack-check
|
|
#cgo CFLAGS: -fno-stack-protector
|
|
#cgo CFLAGS: -mno-stack-arg-probe
|
|
#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T
|
|
*/
|
|
import "C"
|