Post not yet marked as solved
Post marked as unsolved with 1 replies, 422 views
When i compile the c program with mysql i get the next error:
ld: library not found for -lzstd
clang: error: linker command failed with exit code 1 (use -v to see invocation)
So i use the zstd (that i installed) directory link in my command line
gcc parking.o -o parking.exe `mysql_config --libs` -L/opt/homebrew/Cellar/zstd/1.5.2/lib
It creates the .exe but when i launch it i get
How can i solve it ? Need help please.