Skip to content

Commit

Permalink
Add -pthread to cgo LDFLAGS (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenlu authored Mar 14, 2024
1 parent f61b8c5 commit 7b1f727
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lightspark-crypto-go/signing.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package lightspark_crypto

// TODO(mhr): Dynamic linking?

// #cgo darwin,amd64 LDFLAGS: -L${SRCDIR}/libs/darwin/amd64 -llightspark_crypto
// #cgo darwin,arm64 LDFLAGS: -L${SRCDIR}/libs/darwin/arm64 -llightspark_crypto
// #cgo linux,amd64 LDFLAGS: -L${SRCDIR}/libs/linux/amd64 -Wl,-Bstatic -llightspark_crypto -Wl,-Bdynamic
// #cgo linux,arm64 LDFLAGS: -L${SRCDIR}/libs/linux/arm64 -Wl,-Bstatic -llightspark_crypto -Wl,-Bdynamic
// #cgo darwin,amd64 LDFLAGS: -L${SRCDIR}/libs/darwin/amd64 -llightspark_crypto -pthread
// #cgo darwin,arm64 LDFLAGS: -L${SRCDIR}/libs/darwin/arm64 -llightspark_crypto -pthread
// #cgo linux,amd64 LDFLAGS: -L${SRCDIR}/libs/linux/amd64 -Wl,-Bstatic -llightspark_crypto -Wl,-Bdynamic -pthread
// #cgo linux,arm64 LDFLAGS: -L${SRCDIR}/libs/linux/arm64 -Wl,-Bstatic -llightspark_crypto -Wl,-Bdynamic -pthread
import "C"
import (
"strings"
Expand Down

0 comments on commit 7b1f727

Please sign in to comment.