Skip to content

Commit

Permalink
Merge pull request Kitt-AI#157 from brentnd/master
Browse files Browse the repository at this point in the history
fix link order in go bindings for gcc/g++
  • Loading branch information
chenguoguo authored Mar 31, 2017
2 parents 5ed3c9a + 5093102 commit c03be34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions swig/Go/snowboy.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package snowboydetect

/*
#cgo CXXFLAGS: -std=c++11 -D_GLIBCXX_USE_CXX11_ABI=0
#cgo linux,amd64 LDFLAGS: -lcblas -L${SRCDIR}/../../lib/ubuntu64 -lsnowboy-detect
#cgo linux,arm LDFLAGS: -lcblas -L${SRCDIR}/../../lib/rpi -lsnowboy-detect
#cgo darwin LDFLAGS: -lcblas -L${SRCDIR}/../../lib/osx -lsnowboy-detect
#cgo linux,amd64 LDFLAGS: -L${SRCDIR}/../../lib/ubuntu64 -lsnowboy-detect -lcblas
#cgo linux,arm LDFLAGS: -L${SRCDIR}/../../lib/rpi -lsnowboy-detect -lcblas
#cgo darwin LDFLAGS: -L${SRCDIR}/../../lib/osx -lsnowboy-detect -lcblas
*/
import "C"

0 comments on commit c03be34

Please sign in to comment.