I have built shared library using Linux configuration, say, akhil.so
I have a Linux App Project MyApp and I want to so file. How to do this?
I tried adding path and lib name in make file settings. When I try to apply it gives following error
Tool arguments: -Wl,–start-group “/tmp/VisualGDB_ToolchainTestProgram.o” -o “/tmp/VisualGDB_ToolchainTestProgram” -Wl,-gc-sections -L/tmp/VisualGDB/c/projects/Test/LinuxProject3/LinuxProject3 -lRevLib.so -Wl,–end-group
/usr/bin/ld: cannot find -lRevLib.so
collect2: error: ld returned 1 exit status
What is wrong and how to fix it?