When attempting to compile under linux in CodeBlocks I get

cannot find -lOgreMain_d

and

cannot find -lOIS_d.

Under the linker settings I have

/usr/lib/libOgreTerrain.so
/usr/lib/libOgreRTShaderSystem.so
/usr/lib/libOgrePaging.so
/usr/lib/libOgreMain.so
/usr/lib/libOgreProperty.so
/usr/lib/libOIS-1.3.0.so
/usr/lib/libOIS.so
/usr/lib/libOIS.a

How do I fix this error?

link|improve this question

feedback

1 Answer

Why do you expect to find a library which isn't even there? Use:

gcc <options> -lOIS -lOgreMain

etc. Always specify libraries only which have a corresponding filename in /usr/lib or other standard library locations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.