Hello
I installed FoundationDB on my Apple Silicon Mac using the release package for aarch64.
I wrote the following code to set the version:
#define FDB_API_VERSION 710
#include <foundationdb/fdb_c.h>
int main(){
fdb_select_api_version(710);
return 0;
}
While compiling with clang, I received the following error:
ld: Undefined symbols:
_fdb_select_api_version_impl, referenced from:
_main ...
I verified that the fdb_c.h file was present where the documentation said it should be. Any help would be appreciated. Thanks