Irrlicht->Dev-C++->DX8 problem
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
Irrlicht->Dev-C++->DX8 problem
I get this error when compiling with DX8.
cc1plus.exe C:\Dev-Cpp\Engine\Irrlicht Engine\cc1plus.exe
[Warning] -fvtable-thunks is no longer supported
cc1plus.exe C:\Dev-Cpp\Engine\Irrlicht Engine\cc1plus.exe
[Warning] -fvtable-thunks is no longer supported
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
success with compiling Irrlicht with Dev-C++ and DirectX8
Hi,
Using version 0.4.1, you must launch Dev-C++ and check if you have downloaded the Directx package for Dev-C++. Just open Irrlicht.dev and make some modifications or additions :
1) in IrrCompileConfig.h, modify lines 23-26 as following :
#if defined(_WIN32)
// && !defined(__GNUC__)
#define _IRR_COMPILE_WITH_DIRECTX_8_
#endif
2) "Tab Project > Project options (Alt-P) > Tab Paremeters > Link editor" : just add "-ld3d8 -ld3dx8d"
Also, I advise you to add optimizations flags too, if you want to be able to have 200fps instead of 70 fps ( software/opengl )
Using version 0.4.1, you must launch Dev-C++ and check if you have downloaded the Directx package for Dev-C++. Just open Irrlicht.dev and make some modifications or additions :
1) in IrrCompileConfig.h, modify lines 23-26 as following :
#if defined(_WIN32)
// && !defined(__GNUC__)
#define _IRR_COMPILE_WITH_DIRECTX_8_
#endif
2) "Tab Project > Project options (Alt-P) > Tab Paremeters > Link editor" : just add "-ld3d8 -ld3dx8d"
Also, I advise you to add optimizations flags too, if you want to be able to have 200fps instead of 70 fps ( software/opengl )
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
-
- Posts: 386
- Joined: Thu Sep 25, 2003 12:43 pm
- Contact:
dev-c++ and directx
according to a dev-c++ forum i'm on, dev-c++ and directx don't get along well witth each other......