chore: add reference to library folders for go mod vendor

This commit is contained in:
Richard Ramos 2023-09-16 13:03:46 -04:00
parent 6057b9728a
commit 2a77c3734d
No known key found for this signature in database
GPG Key ID: 1CE87DB518195760
4 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,3 @@
package x8664pcwindowsgnu
// WARNING: Do not delete this file, otherwise `go mod vendor` will not download RLN static libraries

View File

@ -0,0 +1,3 @@
package x8664unknownlinuxgnu
// WARNING: Do not delete this file, otherwise `go mod vendor` will not download RLN static libraries

View File

@ -0,0 +1,3 @@
package x8664unknownlinuxmusl
// WARNING: Do not delete this file, otherwise `go mod vendor` will not download RLN static libraries

View File

@ -1,5 +1,11 @@
package rln package rln
import (
_ "github.com/waku-org/go-zerokit-rln-x86_64/libs/x86_64-pc-windows-gnu"
_ "github.com/waku-org/go-zerokit-rln-x86_64/libs/x86_64-unknown-linux-gnu"
_ "github.com/waku-org/go-zerokit-rln-x86_64/libs/x86_64-unknown-linux-musl"
)
/* /*
#cgo LDFLAGS: -lrln -ldl -lm #cgo LDFLAGS: -lrln -ldl -lm
#cgo linux,amd64,musl,!android LDFLAGS:-L${SRCDIR}/../libs/x86_64-unknown-linux-musl #cgo linux,amd64,musl,!android LDFLAGS:-L${SRCDIR}/../libs/x86_64-unknown-linux-musl