github.com/aergoio/aergo@v1.3.1/contract/sqlite3_windows.go (about) 1 // Copyright (C) 2014 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 6 // +build windows 7 8 package contract 9 10 /* 11 #cgo CFLAGS: -I. 12 #cgo CFLAGS: -fno-stack-check 13 #cgo CFLAGS: -fno-stack-protector 14 #cgo CFLAGS: -mno-stack-arg-probe 15 #cgo LDFLAGS: -lmingwex -lmingw32 16 #cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T 17 */ 18 import "C"