... device =(IrrlichtDevice *)createDevice( video::EDT_SOFTWARE, ..
this functi0on causes error at runtime
so therefore demo applications wont run for me.
what could be the reason ?
wouldn't be there a better way of debugging this .
device =(IrrlichtDevice *)createDevice( returns 0 ?
-
generalchaos
- Posts: 3
- Joined: Tue Mar 09, 2010 12:33 pm
what error message do you get ???
what does the code line completely look like (and maybe lines before it) ???
what Irrlicht version do you use ???
what OS and IDE do you use ???
without enough information we can't help you, we are not mentalists !!!
what does the code line completely look like (and maybe lines before it) ???
what Irrlicht version do you use ???
what OS and IDE do you use ???
without enough information we can't help you, we are not mentalists !!!
while(!asleep) sheep++;
IrrExtensions:
http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
IrrExtensions:

http://abusoft.g0dsoft.com
try Stendhal a MORPG written in Java
-
generalchaos
- Posts: 3
- Joined: Tue Mar 09, 2010 12:33 pm
ok. thanks.Acki wrote:what error message do you get ???
what does the code line completely look like (and maybe lines before it) ???
what Irrlicht version do you use ???
what OS and IDE do you use ???
without enough information we can't help you, we are not mentalists !!!
here is the compile log :
----------------------------------
Compiler: Default compiler
Building Makefile: "C:\game_src\irricht-1.7.1\irrlicht-1.7.1\examples\01.HelloWorld\Makefile.win"
Executing make...
make.exe -f "C:\game_src\irricht-1.7.1\irrlicht-1.7.1\examples\01.HelloWorld\Makefile.win" all
make.exe: Nothing to be done for `all'.
Execution terminated
Compilation successful
----------------------------------
after that the output file goes to C:\game_src\irricht-1.7.1\irrlicht-1.7.1\bin\Win32-gcc
Directory of C:\game_src\irricht-1.7.1\irrlicht-1.7.1\bin\Win32-gcc
<DIR> .
<DIR> ..
396,764 HelloWorld.exe <--this is the wirking one comes as binary
6,781,276 Irrlicht.dll
57,171 01.HelloWorld.exe <-- this is the one compiled using source-code.
our one is 57,171 vs working one which is 396,764
so it looks like something gone wrong at linking.
and no there is no linker or compiler errors.
it crashes at runtime .
-
generalchaos
- Posts: 3
- Joined: Tue Mar 09, 2010 12:33 pm
ok irrlich 1.0 works fine . when i replaced the dll from 1.7 on system32 folder [xp-sp3]hybrid wrote:You probably use the VisualStudio dll which is found somewhere on the search path. This will crash as described.
it seems like the dll provided on 1.7 for gcc-win32 is not compatible with mingw .
when i compile the program on 1.7 and try to use a dll from 1.0 it says missing referance to functions found.
thanks anyway.