Skip to content

Commit

Permalink
Merge pull request #575 from GJRTimmer/fix/306
Browse files Browse the repository at this point in the history
fix/306
  • Loading branch information
gjrtimmer committed May 30, 2018
2 parents 52b8080 + 6a7f271 commit 7b116b5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sqlite3_ppc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// 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 LDFLAGS: -ldl -lpthread
*/
import "C"
14 changes: 14 additions & 0 deletions sqlite3_ppc64.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// 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 LDFLAGS: -ldl -lpthread
*/
import "C"

0 comments on commit 7b116b5

Please sign in to comment.