You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does 'go version' print?
go version go1.3.1 windows/386
What steps reproduce the problem?
Build the following:
package main
import (
"fmt"
_ "github.com/d2g/unqlitego"
_ "github.com/mattn/go-sqlite3"
)
func main() {
fmt.Println("Erm Compile?")
}
What happened?
duplicate symbol reference: __moddi3 in both github.com/d2g/unqlitego( .text) and
github.com/mattn/go-sqlite3(.text)
What should have happened instead?
Build.
Please provide any additional information below.
Same issue on 1.2 Windows/386
Works with AMD64 GOARCH
Compiles if you remove either library.
`go get https://github.com/d2g/issue-duplicate_symbol`
StackOverflow:
http://stackoverflow.com/questions/25782708/why-do-i-get-duplicate-symbol-reference-when-including-two-cgo-based-libaries
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: