Description
I'm encountering an issue while building my project where the linker (ld) cannot find the perclibrary (-lperclibrary) during the linking phase. This results in a build error with the following message:
/usr/bin/ld: cannot find -lperclibrary
collect2: error: ld returned 1 exit status
make[2]: *** [src/CMakeFiles/percolator.dir/build.make:99: src/percolator] Error 1
make[1]: *** [CMakeFiles/Makefile2:203: src/CMakeFiles/percolator.dir/all] Error 2
make: *** [Makefile:156: all] Error 2
I need assistance in resolving this linker error in my project. Specifically, I need guidance on how to ensure that perclibrary is correctly linked during the build process. Any advice or suggestions on how to fix this issue would be greatly appreciated.