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
You can link the object file, creating the binary program, as follows:
g++ my_program.o -o my_program -ltiledb
Then run the program:
./my_program
TileDB Version: 0.5.2
The above should work given that the TileDB header files and libraries are in paths that your compiler can locate. Otherwise, make sure to include the TileDB header path with -I and the library path with -L when compiling and linking with TileDB. Also you may have to run
export LD_LIBRARY_PATH=<the TileDB library path>
in case your dynamic linker still cannot locate the TileDB shared library. Please contact us if you encounter any problems.