i7inferno wrote:
Has anyone gotten bullet working on 2011 64bit Maya for linux or windows?
...not yet.
i7inferno wrote:
If you have what steps did you take? Did you compile from source?
I'm using Ubuntu 10.04 64-bit here and still no luck.
This is what I did so far:
Installation of needed packages
Code:
sudo apt-get install cmake libgl1-mesa-dev \
libopenal-dev libsdl-mixer1.2-dev libsdl-net1.2-dev freeglut3-dev
Then:
Code:
cd dynamica-Bullet-2.76-source
cmake . -G "Unix Makefiles"
make
It starts compiling and goes on for quite some time.
Suddenly it stops and spits out the following errors
Code:
[ 94%] Building CXX object Extras/MayaPlugin/CMakeFiles/BulletMayaPlugin.dir/bt_solver.o
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp: In member function ‘virtual void bt_solver_t::export_bullet_file(const char*)’:
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp:76: error: ‘fopen’ was not declared in this scope
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp:79: error: ‘stderr’ was not declared in this scope
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp:79: error: ‘fprintf’ was not declared in this scope
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp:86: error: ‘fwrite’ was not declared in this scope
/home/myself/Downloads/dynamica-Bullet-2.76-source/Extras/MayaPlugin/bt_solver.cpp:87: error: ‘fclose’ was not declared in this scope
make[2]: *** [Extras/MayaPlugin/CMakeFiles/BulletMayaPlugin.dir/bt_solver.o] Error 1
make[1]: *** [Extras/MayaPlugin/CMakeFiles/BulletMayaPlugin.dir/all] Error 2
make: *** [all] Error 2
Ideas on how to solve that problem?