CHAI3DCHAI3D

normal error chai3d.lib 64bits visualstudio 10 express

More
08 Feb 2016 01:21 #1

Hello,

When i try to compile the chai3d 3.1.1 solution with visualstudio 10 express, it not recognize the solution items, and i can't compile the chai3d.lib because i have this error "LINK : fatal error LNK1181: cannot open input file 'Winmm.lib' "

How can i resolve this problem.

Thank for any answer.

Wilfrid Grassi

Please Log in or Create an account to join the conversation.

More
08 Feb 2016 14:10 #2

Visual Studio 2010 Express does not seem to support 64-bit well out of the box. In order to build 64-bit releases with this version, you will need to manually tell VS about external libraries provided by the Windows SDK.

In the case of winmm.lib, this can be done by adding:

C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\x64
to the library path in the projects settings (assuming you are using Windows SDK version 7.1).
(Source: kcode.de/wordpress/2448-building-x64-wit...tudio-c-2010-express)

We recommend updating your version of Visual Studio to VS2013 Community Edition (available here ) to avoid Visual Studio compatibility issues.

Please Log in or Create an account to join the conversation.