Problem building bullet lib with VIsual Studio 6 [solved]

JoF
Posts: 2
Joined: Wed Nov 12, 2008 9:36 am

Problem building bullet lib with VIsual Studio 6 [solved]

Post by JoF »

I tried to build the bullet libs with Visual Studio 6, this works fine for libbulletmath
and libbulletsoftbody, but libbulletcollision shows following output :

Code: Select all

--------------------Configuration: libbulletcollision - Win32 Release--------------------
Compiling...
btCompoundShape.cpp
C:\Bullet_2.72\src\BulletCollision\CollisionShapes\btCompoundShape.cpp(192) : error C2374: 'k' : redefinition; multiple initialization
        C:\Bullet_2.72\src\BulletCollision\CollisionShapes\btCompoundShape.cpp(183) : see declaration of 'k'
btDbvt.cpp
Generating Code...
C:\Bullet_2.72\src\BulletCollision\BroadphaseCollision\btDbvt.cpp(277) : fatal error C1600: unsupported data type
Error executing cl.exe.

libbulletcollision.lib - 2 error(s), 0 warning(s)
I don't know what i'm doing wrong, has anyone an idea ?

Thx.
Last edited by JoF on Thu Nov 13, 2008 4:42 pm, edited 1 time in total.
User avatar
Erwin Coumans
Site Admin
Posts: 4221
Joined: Sun Jun 26, 2005 6:43 pm
Location: California, USA

Re: Problem building bullet lib with VIsual Studio 6

Post by Erwin Coumans »

Thanks for the report.

The latest Bullet 2.73 RC3 has been fixed and should compile for Visual Studio 6:

http://code.google.com/p/bullet/downloa ... 73-rc3.zip

Hope this helps,
Erwin
JoF
Posts: 2
Joined: Wed Nov 12, 2008 9:36 am

Re: Problem building bullet lib with VIsual Studio 6

Post by JoF »

Yeah, works now !

Great work, thx.