diff options
author | mattn <mattn.jp@gmail.com> | 2018-05-27 22:22:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-27 22:22:03 +0900 |
commit | 694900d720e61f75e4ccb866f3590cb44fe8ba8b (patch) | |
tree | 76d7153a4c77097fe7f81e462ff7d6bb5a7daf94 /sqlite3_windows.go | |
parent | Merge pull request #570 from GJRTimmer/update/docs (diff) | |
parent | fmt update (diff) | |
download | golite-694900d720e61f75e4ccb866f3590cb44fe8ba8b.tar.gz golite-694900d720e61f75e4ccb866f3590cb44fe8ba8b.tar.xz |
Merge pull request #571 from GJRTimmer/fix/fmt
fmt update
Diffstat (limited to 'sqlite3_windows.go')
-rw-r--r-- | sqlite3_windows.go | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sqlite3_windows.go b/sqlite3_windows.go index 163e8f7..4222e7f 100644 --- a/sqlite3_windows.go +++ b/sqlite3_windows.go @@ -2,13 +2,17 @@ // // 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. -fno-stack-check -fno-stack-protector -mno-stack-arg-probe -#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T +#cgo CFLAGS: -I. +#cgo CFLAGS: -fno-stack-check +#cgo CFLAGS: -fno-stack-protector +#cgo CFLAGS: -mno-stack-arg-probe #cgo LDFLAGS: -lmingwex -lmingw32 +#cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T */ import "C" |