Panda + C++

I am having troubles with compileing or building a sollution
when I compile the program I get the following error
I am using MCVC++ 2008

++++++++++++++++++++++++++++++++++++++++++++++++++++++
1>------ Build started: Project: Panda1, Configuration: Debug Win32 ------
1>Compiling…
1>Panda.cpp
1>Compiling manifest to resources…
1>Microsoft ® Windows ® Resource Compiler Version 6.0.5724.0
1>Copyright © Microsoft Corporation. All rights reserved.
1>Linking…
1>LINK : fatal error LNK1104: cannot open file ‘python26_d.lib’
1>Build log was saved at “file://c:\Users\Donald\Documents\Visual Studio 2008\Projects\Panda1\Panda1\Debug\BuildLog.htm”
1>Panda1 - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Use the Release configuration, not Debug, as the manual page states:
panda3d.org/manual/index.php/H … tudio_2008

lol I actually did it but never clicked aply, ty anyway

This is what I get from my Microsoft VC++ 2008 Express compiler output…

-----from here-----
1>------ Build started: Project: PandaDemo(VGC), Configuration: Release Win32 ------
1>Deleting intermediate and output files for project ‘PandaDemo(VGC)’, configuration ‘Release|Win32’
1>Compiling…
1>P3DHelloWorld.cpp
1>.\P3DHelloWorld.cpp : fatal error C1033: cannot open program database ‘’
1>Build log was saved at “file://c:\Users\AryuLimitless\Documents\Visual Studio 2008\Projects\PandaDemo(VGC)\PandaDemo(VGC)\Release\BuildLog.htm”
1>PandaDemo(VGC) - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
-----to here-----

The code that I used is from the Panda3D C++ instructions (the smaller HelloWorld example). Not sure if I’ve done something wrong, or MSVC++ Express is just being brain dead… I’ve even added the links and other paths as described, so I’m not even sure why this is tanking.

Please help.

I did apply the changes, as described…
I did also upgrade to Win7 and my XNA C# works.

Not sure why MSVS 2008 Express keeps tanking. Could it be that Python is not installed?

Please reply.

“cannot open program database” seems like an error message that indicates something is wrong with your compiler, not with your set of installed software. I’ve seen that error message when there is an invalid object file in the same directory. Have you tried cleaning out your build tree and starting over?

David

That’s a good question…
I don’t think I did.

I will try this. Either way, I will let you know.

Thanks.

I did and I still get the error… :confused: :open_mouth:

Should I reinstall MS Visual Studios Express C++ 2008? Or should I just install the Professional Package?

My XNA 3.1 works with the MSVS XC# 2008. 8)
Not really sure why this isn’t. :confused:

Please help…

(and Happy Easter… :slight_smile: )

Hmm, I don’t know. Can you use it to compile other programs (not related to Panda3D) successfully? If not, that would certainly argue strongly for re-installation of the compiler.

If it does work successfully on other programs, perhaps there is something wrong with your Panda3D installation. You could try re-installing that, or even building Panda from source.

David

Yes it does compile and run other things…

I guess I should reinstall Panda3D…

Thanks for the advice. I’ll look into doing just that.