cant compile

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
master123467
Posts: 60
Joined: Mon Jan 02, 2006 6:03 pm
Contact:

cant compile

Post by master123467 »

ok heres my prob well first off im runing windows vista RC1 and using irrlicht 1.1 on dev cpp and audiere for the sound and newton for the physics


heres my prob

Code: Select all

 dllcrt2.o C:\Users\master123467\Documents\download\master123467\irrQuake\ld No such file: No such file or directory. 

 C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win [Build Error]  [irrlicht.dll] Error 1 
and heres my compile log

Code: Select all

Compiler: Default compiler
Building Makefile: "C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win"
Executing  make...
make.exe -f "C:\Users\master123467\Documents\download\master123467\irrQuake\Makefile.win" all
dllwrap.exe --output-def libirrlicht.def --driver-name c++ --implib libirrlicht.a main.o irrlicht_private.res -L"C:/Dev-Cpp/lib" -L"C:/Irrlicht/lib/Win32-gcc" -L"C:/Program Files/NewtonSDK/sdk/dll" -irrlicht    -o irrlicht.dll

ld: dllcrt2.o: No such file: No such file or directory

dllwrap.exe: no export definition file provided.
Creating one, but that may not be what you want
dllwrap.exe: c++ exited with status 1

make.exe: *** [irrlicht.dll] Error 1

Execution terminated
can someone plz help me compile this some how
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

crt means C RunTime so the compiler (actually the linker being part of the compiler suite) cannot find the required C runtime library. Probably a compiler setup problem. Or you're using files compiled for MSVC which cannot be mixed with gcc files.
master123467
Posts: 60
Joined: Mon Jan 02, 2006 6:03 pm
Contact:

Post by master123467 »

no im not using msvc only gcc
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Are you sure that Audiere and Newton are also compiled without such dependencies?
master123467
Posts: 60
Joined: Mon Jan 02, 2006 6:03 pm
Contact:

Post by master123467 »

yes i am sure
Post Reply