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 ...
Search found 21 matches
- Sat Dec 03, 2005 2:07 pm
- Forum: Beginners Help
- Topic: VC 2005 compile problem
- Replies: 6
- Views: 957
- Fri Dec 02, 2005 6:17 pm
- Forum: Advanced Help
- Topic: Dev-cpp, directx problem
- Replies: 0
- Views: 255
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 ...
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 ...
- Mon Aug 15, 2005 3:09 pm
- Forum: Beginners Help
- Topic: Defines
- Replies: 0
- Views: 160
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
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
- Wed Aug 10, 2005 3:35 pm
- Forum: Beginners Help
- Topic: Dev cpp problem
- Replies: 4
- Views: 430
- Sun Aug 07, 2005 3:38 pm
- Forum: Beginners Help
- Topic: Dev cpp problem
- Replies: 4
- Views: 430
- Fri Aug 05, 2005 6:15 pm
- Forum: Beginners Help
- Topic: Dev cpp problem
- Replies: 4
- Views: 430
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
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
- Fri Aug 05, 2005 5:59 pm
- Forum: Beginners Help
- Topic: Creating libirrlicht.a
- Replies: 4
- Views: 374
- Fri Aug 05, 2005 4:21 pm
- Forum: Beginners Help
- Topic: Creating libirrlicht.a
- Replies: 4
- Views: 374
- Fri Aug 05, 2005 3:18 pm
- Forum: Beginners Help
- Topic: String problem
- Replies: 4
- Views: 422
- Fri Aug 05, 2005 10:17 am
- Forum: Beginners Help
- Topic: Optimisation
- Replies: 7
- Views: 683
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 ...
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 ...
- Fri Aug 05, 2005 10:09 am
- Forum: Beginners Help
- Topic: String problem
- Replies: 4
- Views: 422
- Thu Aug 04, 2005 6:22 pm
- Forum: Beginners Help
- Topic: String problem
- Replies: 4
- Views: 422
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
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
- Thu Aug 04, 2005 5:17 pm
- Forum: Beginners Help
- Topic: Creating libirrlicht.a
- Replies: 4
- Views: 374
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
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
- Sun Jul 31, 2005 5:41 pm
- Forum: Beginners Help
- Topic: Compiling source with mingw + dev-cpp
- Replies: 6
- Views: 933
- Sat Jul 30, 2005 7:05 pm
- Forum: Beginners Help
- Topic: I'm getting a linker error...
- Replies: 16
- Views: 1737