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
Hi,
I want do deploy docker-vnfm and docker-vim for a linux arm architecture.
crosscompiling docker-driver with:
env GOOS=linux GOARCH=arm go build -o docker-driver
works fine.
But cc docker-vnfm with:
env GOOS=linux GOARCH=arm go build -o docker-vnfm
gives the following overflow on an integer variable:
github.com/openbaton/go-docker-vnfm/main/vendor/github.com/dgraph-io/badger
vendor/github.com/dgraph-io/badger/kv.go:86:6: constant 1099511627776 overflows int
cc the docker-vnfm with GOARCH=arm64 is successful again, but I need it for 32bit architecture.
Any help is appreciated. Either fixing it or providing docker-vnfm for an arm32 architecture...
The text was updated successfully, but these errors were encountered:
Hi,
I want do deploy docker-vnfm and docker-vim for a linux arm architecture.
crosscompiling docker-driver with:
env GOOS=linux GOARCH=arm go build -o docker-driver
works fine.
But cc docker-vnfm with:
env GOOS=linux GOARCH=arm go build -o docker-vnfm
gives the following overflow on an integer variable:
github.com/openbaton/go-docker-vnfm/main/vendor/github.com/dgraph-io/badger
vendor/github.com/dgraph-io/badger/kv.go:86:6: constant 1099511627776 overflows int
cc the docker-vnfm with GOARCH=arm64 is successful again, but I need it for 32bit architecture.
Any help is appreciated. Either fixing it or providing docker-vnfm for an arm32 architecture...
The text was updated successfully, but these errors were encountered: