Compile Options
Compile Options
Hi everyone.
I have a problem.
My irrlicht application doesn't run on computer, where C++ is not installed.
Initialization Error (0хс0000135).
So my question is:
How to compile my project to run on computers without installed C++?
And one more question
How to make cubemap reflections?
I have a problem.
My irrlicht application doesn't run on computer, where C++ is not installed.
Initialization Error (0хс0000135).
So my question is:
How to compile my project to run on computers without installed C++?
And one more question
How to make cubemap reflections?
Maybe it's due to a debug release? The debug libraries are usually not found on common windows systems without compiler. But you mught want to include a somewhat more complete error message.
Cubemaps are implemented in IrrSpintz which is a development branch of Irrlicht, but mostly compatible with basic Irrlicht.
Cubemaps are implemented in IrrSpintz which is a development branch of Irrlicht, but mostly compatible with basic Irrlicht.
Here is error screenshot.
http://img81.imageshack.us/img81/7537/error3oh.jpg
Translation:
Title:
irrlicht.exe - Application Error
Message:
Error during application initialization (0хс0000135). To exit the application press "OK" button.
P.S. WinXP Pro SP1
http://img81.imageshack.us/img81/7537/error3oh.jpg
Translation:
Title:
irrlicht.exe - Application Error
Message:
Error during application initialization (0хс0000135). To exit the application press "OK" button.
P.S. WinXP Pro SP1
Sorry, misinterpreted your previous message, so my last answer was wrong. So you're really using C++, not C#? The compiler usually gives much more information on missing libraries, but there's probably some library missing. Check if you link with some unnecessary library. Default settings for M$ compilers include lots of libraries including .net libraries. You might even link with debug libraries in release mode. There should be a tool to check which libraries are necessary for the tool to run (such as cygcheck.exe under cygwin which I am using for these purposes).
It seems to me that problem in dotnet framework..
I've check that my program need not only irrlicht.dll, but mscoree.dll too.
So I've copied this dll to my friend's windows/system32 and got this error http://img98.imageshack.us/img98/7417/error8up.jpg
I'll try to install it on my friend's computer, and tell you about the results.
I've check that my program need not only irrlicht.dll, but mscoree.dll too.
So I've copied this dll to my friend's windows/system32 and got this error http://img98.imageshack.us/img98/7417/error8up.jpg
I'll try to install it on my friend's computer, and tell you about the results.
You cannot do cubemaps with basic Irrlicht and without major work as it is not included. But Spintz has implemented this so you can either take that Irrlicht version, or port back the cubemap thing (but it seems to be some work to do that).
With your other problem: Try to disable the managed code setting in your project preferences. This could be enough to not link agaist all these .net libraries.
With your other problem: Try to disable the managed code setting in your project preferences. This could be enough to not link agaist all these .net libraries.