Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

C++: fatal error LNK1181: cannot open input file 'robottools.lib'

  • 29-09-2011 07:52PM
    #1
    Registered Users, Registered Users 2 Posts: 72 ✭✭


    I am trying to compile the torcs' files in Visual C++2010, but i keep getting these errors: fatal error LNK1181: cannot open input file 'robottools.lib'
    I have checked the directories and the paths are there.

    Thanks in advance for any help.


Comments

  • Registered Users, Registered Users 2 Posts: 639 ✭✭✭omen80


    I had a similar error myself during the week. A clean, and then a rebuild fixed it for me.
    You might need to build some libraries and then link them in project properties?


  • Registered Users, Registered Users 2 Posts: 3,945 ✭✭✭Anima


    http://support.microsoft.com/kb/839286

    You should always google the error codes. Seems to be a problem with the intermediaries, kind of strange never had that myself.


  • Registered Users, Registered Users 2 Posts: 7,157 ✭✭✭srsly78


    That's a basic link error. It cannot find the file specified. Go search for the file, does it exist in another location?

    either:
    a) your paths are wrong, and it cant find the .LIB file
    b) You didn't build the .lib file so it doesn't exist.

    So go build the lib file or fix your paths. You don't need to "link them in project properties" because it's already trying to, it just can't find it.


Advertisement