Search found 21 matches

by lincsimp
Sat Dec 03, 2005 2:07 pm
Forum: Beginners Help
Topic: VC 2005 compile problem
Replies: 6
Views: 755

VC 2005 compile problem

Hi When I try to compile the source I get the errors: Linking... Irrlicht.obj : warning LNK4224: /COMMENT is no longer supported; ignored Creating library .\..\Debug/Irrlicht.lib and object .\..\Debug/Irrlicht.exp CIrrDeviceWin32.obj : error LNK2019: unresolved external symbol "class irr::video...
by lincsimp
Fri Dec 02, 2005 6:17 pm
Forum: Advanced Help
Topic: Dev-cpp, directx problem
Replies: 0
Views: 185

Dev-cpp, directx problem

hi I've decided to add directx support to my version of the engine. I followed the instructions in the FAQ forum. i get these errors: bin/obj/CD3D9HLSLMaterialRenderer.o(.text+0x31a):CD3D9HLSLMaterialRenderer.cpp: undefined reference to `D3DXCompileShader@40' bin/obj/CD3D9HLSLMaterialRenderer.o(.tex...
by lincsimp
Mon Aug 15, 2005 3:09 pm
Forum: Beginners Help
Topic: Defines
Replies: 0
Views: 104

Defines

Hey
Can someone tell me what all these do, and if they are needed when compiling with dev-cpp as a static lib:

-D__GNUWIN32__ -W -DWIN32 -DNDEBUG -D_WINDOWS -D_MBCS -D_USRDLL -DIRRLICHT_EXPORTS

cheers
by lincsimp
Wed Aug 10, 2005 3:35 pm
Forum: Beginners Help
Topic: Dev cpp problem
Replies: 4
Views: 283

reinstalled dev-cpp and it worked like a dream...
by lincsimp
Sun Aug 07, 2005 3:38 pm
Forum: Beginners Help
Topic: Dev cpp problem
Replies: 4
Views: 283

can anyone help?
by lincsimp
Fri Aug 05, 2005 6:15 pm
Forum: Beginners Help
Topic: Dev cpp problem
Replies: 4
Views: 283

Dev cpp problem

Hey
I changed the parameters of a function in the irrlicht source. Then I updated the lib and dll, but dev cpp gives the "no matching function call" error. Why is this?

If I compile my test file with irrlicht everything works fine

cheers
by lincsimp
Fri Aug 05, 2005 5:59 pm
Forum: Beginners Help
Topic: Creating libirrlicht.a
Replies: 4
Views: 230

thanks!
by lincsimp
Fri Aug 05, 2005 4:21 pm
Forum: Beginners Help
Topic: Creating libirrlicht.a
Replies: 4
Views: 230

can anyone help?
by lincsimp
Fri Aug 05, 2005 3:18 pm
Forum: Beginners Help
Topic: String problem
Replies: 4
Views: 256

It was no mistake, I copied it from that tut :) ... its just it works with most other string classes...
by lincsimp
Fri Aug 05, 2005 10:17 am
Forum: Beginners Help
Topic: Optimisation
Replies: 7
Views: 419

Optimisation

Hey I know that early optimisation is the root of all evil, etc ,etc , but changing: for (s32 i=0; i<16; ++i) M = 0.0f; M[0] = M[5] = M[10] = M[15] = 1; in matrix4::makeidentity to: M[0] = 1; M[1] = 0; M[2] = 0; M[3] = 0; M[4] = 0; M[5] = 1; M[6] = 0; M[7] = 0; M[8] = 0; M[9] = 0; M[10] = 1; M[11] =...
by lincsimp
Fri Aug 05, 2005 10:09 am
Forum: Beginners Help
Topic: String problem
Replies: 4
Views: 256

Mingw gives me:

main.cpp invalid operands of types `const wchar_t[48]' and `const wchar_t*' to binary `operator+'

Thanks
by lincsimp
Thu Aug 04, 2005 6:22 pm
Forum: Beginners Help
Topic: String problem
Replies: 4
Views: 256

String problem

Hey
Why doesn't this work?

core::stringw str = L"Collision detection example - Irrlicht Engine ["
+ driver->getName()
+ "] FPS:"
+ fps;

It works with most other string classes I've seen...

Cheers
by lincsimp
Thu Aug 04, 2005 5:17 pm
Forum: Beginners Help
Topic: Creating libirrlicht.a
Replies: 4
Views: 230

Creating libirrlicht.a

Hi

How can I create the small (3-4k) libirrlicht.a found in \lib\Win32-gcc myself?

I've searched the forum, but could find nothing...


Cheers
by lincsimp
Sun Jul 31, 2005 5:41 pm
Forum: Beginners Help
Topic: Compiling source with mingw + dev-cpp
Replies: 6
Views: 488

I've had a search and can't find anything to do with the error 255. Is there a tutorial from building from source with mingw?
by lincsimp
Sat Jul 30, 2005 7:05 pm
Forum: Beginners Help
Topic: I'm getting a linker error...
Replies: 16
Views: 585

hmm.. does the tutorial compile without any modifications to the source (ie without string stuff and missing core namespace)?