I have a C++ project with external libraries, but I don't manage to make it work. When I try to specify a certain external library file, it seems that ld.exe cannot find it; I tried relative path, absolute path, finding the file in the "open file" dialog, even renaming the file so that it starts with a lowercase L. I am 100% sure the file exists, yet ld.exe cannot find it. How can I make it see the files? If it needs a different syntax/keyword, how can I force that syntax/keyword in Eclipse settings?
c:/mingw/bin/../lib/gcc/x86_64-w64-mingw32/9.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lc:\gurobi900\win64\lib\gurobi90.lib
(Using Visual Studio it was possible to add these .lib files to the linker the way described here, I want to do the same.)