mirror of
				https://github.com/mattn/go-sqlite3.git
				synced 2025-10-28 00:02:48 +00:00 
			
		
		
		
	Fix: Placed all +build tags in the same location Fix: Split CFLAGS, LDFLAGS into seperate lines for readability and lookup Fix: Placed empty line between copyright comments and build tags for readability Fix: Placed OS specfic cgo flags at the end if the cgo sections contains multiple lines.
		
			
				
	
	
		
			19 lines
		
	
	
		
			419 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			419 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (C) 2014 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 LDFLAGS: -lmingwex -lmingw32
 | |
| #cgo windows,386 CFLAGS: -D_USE_32BIT_TIME_T
 | |
| */
 | |
| import "C"
 |