I am attempting to create a shared object using Eclipse CDT and g++, this is the command I am running to compile:
g++ -shared -Wl,-soname=example -o "libProject_Name" ./src/source.o
I am receiving the "libProject_Name" file in my project's debug folder upon compilation, but I cannot find where the example.so file is located. Am I wrong in assuming this should be appearing in the same folder?