Page 2 of 2

Re: Irrlicht 1.7.3 released

Posted: Thu Feb 23, 2012 10:49 pm
by polylux
It's great to see an official release after all. Cheers to everyone who worked on it!
Lots of open source projects are only judged by the frequency of "big news releases" no matter what's happening behind the scenes on git/svn and the like. It's good to show such peeps some signs of life. ;)

Re: Irrlicht 1.7.3 released

Posted: Fri Feb 24, 2012 7:42 am
by hendu
GameDude wrote:Hey there,

When I downloaded the new Irrlicht 1.7.3, I noticed there was no pre-built DLL or linker library for the Win32-GCC port. I had to go and compile Irrlicht through codeblocks so that I could use the GCC(MingW) compiler on windows. I'm just wondering why there wasn't a pre-built one for the GCC compiler?
Just my guess, because there are huge variations in the versions of mingw in use. With VS it's mostly the newest or second-newest one.

Imagine if the prebuilt lib was built with gcc 4.6. Then you have 4.5. "Why is the prebuilt lib not working, I have mingw".

Re: Irrlicht 1.7.3 released

Posted: Fri Feb 24, 2012 10:24 am
by hybrid
Sorry, I simply don't have an environment installed for gcc at all. For the MSVC version, we stayed with 2003 for the 1.7.x releases and will switch to 2008 or 2010 with 1.8. Since the gcc version always came without dx support, most users recompiled those libs anyway. So maybe it's not much loss here. We could think about a second SDK for mingw users, though, if someone from the dev team prepares such a package. This could then also include the examples precompiled etc.

Re: Irrlicht 1.7.3 released

Posted: Fri Mar 02, 2012 8:56 am
by Cube_
on that matter, I am not REALLY sure why the MinGW version doesn't have D3D support, can someone explain this?

Re: Irrlicht 1.7.3 released

Posted: Fri Mar 02, 2012 9:33 am
by CuteAlien
It has D3D9 support, see here how to enable this: http://irrlicht3d.org/wiki/index.php?n= ... 9WithMinGW
You can even get dx8 working with it (at least I managed to do that once), but I don't know the current state of dx8 support.

Re: Irrlicht 1.7.3 released

Posted: Fri Mar 02, 2012 12:34 pm
by hybrid
The problem is a legal one. We are not absolutely sure if the externally modified d3d libs can be legally used to link the d3d in to the mingw version. So it's left out for our official version.

Re: Irrlicht 1.7.3 released

Posted: Sat Mar 03, 2012 1:07 pm
by Cube_
ah, that's why, thanks!

Re: Irrlicht 1.7.3 released

Posted: Mon Mar 19, 2012 10:59 am
by REDDemon
for me precompiled binaries for mingw are not really needed unless there will be the C::B project file for compiling irrlicht. But maybe you should just indicates a "mingw standard" for us users. I'm referring to compile configuration.

For example a standard can be the actual "irrCompileConfig.h" but with _IRR_COMPILE_WITH_DIRECT3D_9_ commented out.. (I just kept only OpenGL and I commented out few loaders for now but every users will do its own configuration). without a standard is possible that users try to use Dll compiled with different configurations across multiple projects wich can cause Blue screens (infact I have renamed the DLL on my machine to "Irrlicht173Test" so that it can't be used in the place of another dll for wich a project was linked with the .def file.)

Also as side note why symbols are not stripped from release Dll? they are not needed unless we are using debuggin and without stripping them the final size is very big.