No longer able to find library

I've been using this static library I made, which used to work perfectly fine. Now, after editing some code for the project, not touching the IDE settings and the library, all of a sudden the linker cannot find my library.

Here is an example of the error:
ld.exe||cannot find -lPrecision_Library-d|

And my library's name with the extension is: libPrecision_Library-d.a

I've read that sometimes the problem may stem from IDE settings, so I tried running the compiler via command-line, but the linker ran into the same error (not being able to find the library), returning 1.

Any ideas?
Last edited on
The name of your library and the one enumerated in your "example error" differ.
I thought the linker usually prefixes the name with "lib" automatically?
Update:

I'm an idiot. For some reason, the path I set for the linker to look in was deleted. I reentered the path to the library, and all is fine now.
Topic archived. No new replies allowed.