chore: add reference to library folders for go mod vendor

This commit is contained in:
Richard Ramos 2023-09-16 13:19:29 -04:00
parent d9528d416c
commit 1dd9494ff0
No known key found for this signature in database
GPG Key ID: 1CE87DB518195760
8 changed files with 31 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,15 @@
package rln
import (
_ "github.com/waku-org/go-zerokit-rln-arm/libs/aarch64-linux-android"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/aarch64-unknown-linux-gnu"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/arm-linux-androideabi"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/arm-unknown-linux-gnueabi"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/arm-unknown-linux-gnueabihf"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/armv7-linux-androideabi"
_ "github.com/waku-org/go-zerokit-rln-arm/libs/armv7a-linux-androideabi"
)
/*
#cgo LDFLAGS: -lrln -ldl -lm
#cgo linux,arm LDFLAGS:-L${SRCDIR}/../libs/armv7-linux-androideabi