I am trying to install go bindings and cannot find the target, I am running below at project root:
(base) ➜ go git:(main) make fdb_go
make: *** No rule to make target 'fdb_go'. Stop.
Help is appreciated.
I am trying to install go bindings and cannot find the target, I am running below at project root:
(base) ➜ go git:(main) make fdb_go
make: *** No rule to make target 'fdb_go'. Stop.
Help is appreciated.
What is your use case to build the go bindings with make?
I have go app and need go client.
I have go app and need go client.
You just have to run go get github.com/apple/foundationdb/bindings/go@version
in your go application, replace version
with the FDB version that you want to use. In order to be able to compile the go binary you have to install the FDB clients (can be found here: Release Release 7.1.33 · apple/foundationdb · GitHub). There is no need to use make.
Ahh, I see, thank you!