Temple of The Roguelike Forums
Development => Programming => Topic started by: Scottbert on March 29, 2015, 04:21:57 AM
-
So awhile back, I mentioned I had an idea for a roguelike. (http://forums.roguetemple.com/index.php?topic=4477.0 (http://forums.roguetemple.com/index.php?topic=4477.0)) Now I've finally gotten around to trying to learn libtcod, and... hoo boy.
I haven't done c++ coding in awhile and I don't know python, so I go to jice's c++ tutorial (http://codeumbra.eu/complete-roguelike-tutorial-using-c-and-libtcod-part-1-setting-up (http://codeumbra.eu/complete-roguelike-tutorial-using-c-and-libtcod-part-1-setting-up)).
I install orwell dev-c++, but getting it to work is a pain and even when pointed at the library what seems to be properly, it won't compile. I decide to use a more direct toolchain.
I install MinGW (the latest 32-bit version, of course) and compile the 'test if things are installed' program from the first tutorial chapter.
Of course, MinGW turns out to be bugged (http://sourceforge.net/p/mingw/bugs/2108/ (http://sourceforge.net/p/mingw/bugs/2108/)), but this just means having to click a button a few times every time I compile something. Okay, I can deal.
The program doesn't open a window or anything. But hey, jice explains how to debug c++ programs!
gdb reveals that my program is segfaulting because of some problem with the library.
Jice doesn't explain how to use the debug libraries, but I can figure it out. Now, recompile and have a look...
J:\dev\proto>gdb tuto
GNU gdb (GDB) 7.6.1
Copyright (C) 2013 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "mingw32".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
Reading symbols from J:\dev\proto\tuto.exe...done.
(gdb) run
Starting program: J:\dev\proto/tuto.exe
[New Thread 14144.0x2964]
[New Thread 14144.0x1098]
24 bits font.
key color : 0 0 0
character for ascii code 255 is colored
Using SDL renderer...
Program received signal SIGSEGV, Segmentation fault.
0x65e70d9f in TCODConsole::clear (this=0x1) at src/console.cpp:196
196 src/console.cpp: No such file or directory.
(gdb) bt
#0 0x65e70d9f in TCODConsole::clear (this=0x1) at src/console.cpp:196
#1 0x0040149b in main () at src/main.cpp:15
(gdb) q
A debugging session is active.
Inferior 1 [process 14144] will be killed.
Quit anyway? (y or n) y
error return ../../gdb-7.6.1/gdb/windows-nat.c:1275 was 5
A search of the internet reveals that this happens to a lot of people, and seems to be the result of my MinGW version not being an exact match for the one the library was compiled on, which makes me wonder why binaries of the library are being distributed at all.
J:\dev\proto>g++ -dumpversion
4.8.1
Okay. Since I have the latest MinGW version, I'll just grab the latest, nightly build of libtcod 1.5.2
No dice, same error.
Okay. so I need to build the library myself. fine. There are instructions: (http://roguecentral.org/doryen/data/libtcod/doc/1.5.2/html2/compile_libtcod_mingw.html?c=true&cpp=true&cs=true&py=true&lua=true (http://roguecentral.org/doryen/data/libtcod/doc/1.5.2/html2/compile_libtcod_mingw.html?c=true&cpp=true&cs=true&py=true&lua=true))
'which' doesn't do anything, which is hardly a surprise at this point, but I can just run hg from the windows command line.
Finally, once I have the source for libtcod, I get into a MingW shell, go to the directory, and make it as instructed.
The MinGW error box pops up twice for every .c or .cpp file, but I'll endure.
$ make -f makefiles/makefile-mingw
Compiling debug src/bresenham_c.c
Compiling debug src/bsp_c.c
Compiling debug src/color_c.c
Compiling debug src/console_c.c
Compiling debug src/fov_c.c
Compiling debug src/fov_circular_raycasting.c
Compiling debug src/fov_diamond_raycasting.c
Compiling debug src/fov_recursive_shadowcasting.c
Compiling debug src/fov_permissive2.c
Compiling debug src/fov_restrictive.c
Compiling debug src/heightmap_c.c
Compiling debug src/image_c.c
Compiling debug src/lex_c.c
Compiling debug src/list_c.c
Compiling debug src/mersenne_c.c
Compiling debug src/noise_c.c
Compiling debug src/parser_c.c
Compiling debug src/path_c.c
Compiling debug src/sys_c.c
Compiling debug src/sys_sdl_c.c
Compiling debug src/sys_sdl12_c.c
Compiling debug src/sys_sdl_img_bmp.c
Compiling debug src/sys_sdl_img_png.c
Compiling debug src/tree_c.c
Compiling debug src/txtfield_c.c
Compiling debug src/wrappers.c
Compiling debug src/zip_c.c
Compiling debug src/namegen_c.c
Compiling debug src/bresenham.cpp
Compiling debug src/bsp.cpp
Compiling debug src/color.cpp
Compiling debug src/console.cpp
Compiling debug src/fov.cpp
Compiling debug src/heightmap.cpp
Compiling debug src/image.cpp
Compiling debug src/lex.cpp
Compiling debug src/mersenne.cpp
Compiling debug src/mouse.cpp
Compiling debug src/noise.cpp
Compiling debug src/parser.cpp
Compiling debug src/path.cpp
Compiling debug src/sys.cpp
Compiling debug src/sys_opengl_c.c
Compiling debug src/txtfield.cpp
Compiling debug src/zip.cpp
Compiling debug src/namegen.cpp
Compiling debug src/png/lodepng.c
Compiling zlib src/zlib/adler32.c
Compiling zlib src/zlib/crc32.c
Compiling zlib src/zlib/deflate.c
Compiling zlib src/zlib/infback.c
Compiling zlib src/zlib/inffast.c
Compiling zlib src/zlib/inflate.c
Compiling zlib src/zlib/inftrees.c
Compiling zlib src/zlib/trees.c
Compiling zlib src/zlib/zutil.c
Compiling zlib src/zlib/compress.c
Compiling zlib src/zlib/uncompr.c
Compiling zlib src/zlib/gzclose.c
Compiling zlib src/zlib/gzlib.c
Compiling zlib src/zlib/gzread.c
Compiling zlib src/zlib/gzwrite.c
c:\MinGW\bin\ar.exe: creating lib/libz.a
Linking libtcod-mingw-debug.dll
Compiling debug src/gui/button.cpp
Compiling debug src/gui/container.cpp
Compiling debug src/gui/flatlist.cpp
Compiling debug src/gui/hbox.cpp
Compiling debug src/gui/image.cpp
Compiling debug src/gui/label.cpp
Compiling debug src/gui/radiobutton.cpp
Compiling debug src/gui/slider.cpp
Compiling debug src/gui/statusbar.cpp
Compiling debug src/gui/textbox.cpp
Compiling debug src/gui/togglebutton.cpp
Compiling debug src/gui/toolbar.cpp
Compiling debug src/gui/vbox.cpp
Compiling debug src/gui/widget.cpp
Linking libtcod-gui-mingw-debug.dll
Compiling release src/bresenham_c.c
Compiling release src/bsp_c.c
Compiling release src/color_c.c
Compiling release src/console_c.c
Compiling release src/fov_c.c
Compiling release src/fov_circular_raycasting.c
Compiling release src/fov_diamond_raycasting.c
Compiling release src/fov_recursive_shadowcasting.c
Compiling release src/fov_permissive2.c
Compiling release src/fov_restrictive.c
Compiling release src/heightmap_c.c
Compiling release src/image_c.c
Compiling release src/lex_c.c
Compiling release src/list_c.c
Compiling release src/mersenne_c.c
Compiling release src/noise_c.c
Compiling release src/parser_c.c
Compiling release src/path_c.c
Compiling release src/sys_c.c
Compiling release src/sys_sdl_c.c
Compiling release src/sys_sdl12_c.c
Compiling release src/sys_sdl_img_bmp.c
Compiling release src/sys_sdl_img_png.c
Compiling release src/tree_c.c
Compiling release src/txtfield_c.c
Compiling release src/wrappers.c
Compiling release src/zip_c.c
Compiling release src/namegen_c.c
Compiling release src/bresenham.cpp
Compiling release src/bsp.cpp
Compiling release src/color.cpp
Compiling release src/console.cpp
Compiling release src/fov.cpp
Compiling release src/heightmap.cpp
In file included from src/heightmap.cpp:27:0:
c:\mingw\include\math.h: In function 'float hypotf(float, float)':
c:\mingw\include\math.h:635:30: error: '_hypot' was not declared in this scope
{ return (float)(_hypot (x, y)); }
^
make: *** [/tmp/libtcod/release/heightmap.o] Error 1
WELL F***.
So, as far as I can tell, trying to use libtcod from publicly available information is simply a no-go. This toolchain is f*cked and I cannot believe anyone actually uses it this way -- I must be doing something very wrong.
So, how do I actually use libtcod? Or does noone use it anymore and I need to find something else?
-
Fix provided by barf_ on #rgrd:
See this bit of the error message:
c:\mingw\include\math.h:635:30: error: '_hypot' was not declared in this scope
{ return (float)(_hypot (x, y)); }
^
Just change it to
{ return (float)(hypot (x, y)); }
As for the annoying messagebox, I fixed that by downgrading to an earlier version of gcc and g++.
-
Yes, all your problems are created by mingw. It used to be solid as a rock, now it bobs and weaves like a turd on the waves created by the people at the public pool trying to swim away from it.
I personally, install VS2013 community edition, and have my own nmake makefile (https://bitbucket.org/rmtew/incursion-roguelike/src/9087c4eddeb4c66c29ce200bc7122f4e31ae0e6e/build/makefile-libtcod?at=master) for it. My own program compiled separately in VS links against it, and finds the source via the PDBs, so I get the full power of the VS debugger.
-
I too recommend using Visual Studio, if you can. Its debugger is awesome.
However, the remark about MinGW right above is not just. The thing is, MinGW is not a concrete product, it is more of a system. Take a look at MinGW page in Qt wiki (http://qt-project.org/wiki/MinGW-64-bit), it gives a quick overview of different MinGW flavours and provides links to reliable ones.
And I can not pass an opportunity to remind that when it comes to pseudoterminal output, there is a BearLibTerminal (http://foo.wyrd.name/en:bearlibterminal) alternative to libtcod.
-
Yes, all your problems are created by mingw.
You mean gcc? I've always thought it's better than VC's compiler. There are some differences in C libraries, but in most cases those can be changed depending on which compiler is used, using #ifdef blocks. When people say there is something wrong in the compiler they actually mean there is something wrong in their source code, they just can't admit it. Or they don't know it.
-
Yes, all your problems are created by mingw.
You mean gcc? I've always thought it's better than VC's compiler. There are some differences in C libraries, but in most cases those can be changed depending on which compiler is used, using #ifdef blocks. When people say there is something wrong in the compiler they actually mean there is something wrong in their source code, they just can't admit it. Or they don't know it.
Read the full post I replied to. A bad mingw install (and by that I mean anyone who would have installed it would have ended up with similar problems) was the cause of it. mingw is a buggy unreliable piece of garbage. It never used to be that way, but it became that way over time. I used to be able to compile the Python programming language under mingw and run the full test suite with same behaviour as I would see on Linux or under Visual Studio. But over time, mingw deteriorated.
-
Use Visual Studio. It has the best debugging facilities ever created by man, while GNU tools can't even display contents of a string properly. Remember that debugging is 90% of a programmer's work. Slight compiler differences, even if they speak in favor of the GNU stuff, will never compensate an inferior debugging system.
-
Use Visual Studio. It has the best debugging facilities ever created by man, while GNU tools can't even display contents of a string properly. Remember that debugging is 90% of a programmer's work. Slight compiler differences, even if they speak in favor of the GNU stuff, will never compensate an inferior debugging system.
I was thinking about it, and it's the user friendliness that makes the difference. Visual Studio just seems to provide a simple, yet capable and featureful, interface to debugging. Somehow these qualities are never quite cloned into open source, without losing what makes it so smooth and easy to use.
However, if Casey Whatshisface from Handmade Hero is to be believed, Valve are on the job and are funding some uber-Linux debugger that'll finally make debugging on Linux a pleasure.
-
Remember that debugging is 90% of a programmer's work.
Well, I almost never use debugger and the reason for that is following strict rules in programming and using C++ (OOP) features. Debugger is useful I guess if you're clueless with traditional C. VC's debugger (and the integration to IDE) is better than gdb.
-
Not having any use for a debugger is more often a sign of doing only trivial programming than having incredible programming discipline.
-
Codeumbra (http://codeumbra.eu/) has this great multi-part article about RLs,
"Complete roguelike tutorial using C++ and libtcod"
This article is the first part of a series heavily inspired by Jotaf's excellent "Complete roguelike tutorial using python + libtcod".
It is intended for C++ beginners and people who want to learn how to use libtcod to create a simple roguelike video game. It covers both Linux and Windows operating systems.
-
Not having any use for a debugger is more often a sign of doing only trivial programming than having incredible programming discipline.
Ha! That was my thought, too. In a quarter century of coding, the only times I haven't used a debugger is when I've been in environments that don't have them.
Sure, you can work without them but why the hell would you - it drastically reduces the amount of time you spend hunting down bugs.
-
Sure, you can work without them but why the hell would you - it drastically reduces the amount of time you spend hunting down bugs.
I don't hunt down bugs, I know where they are. Kaduria has 49K lines of code and 5 open bugs and I know where they are. The thing is that you can easily take out 90% of memory corruption bugs with strict constructor-destructor and ownership rules (and not using raw arrays). You simply don't produce those bugs anymore, so you don't have to hunt them down with debugger. There are bugs after that, but mostly you know exactly where they are even without debugger.
-
I don't hunt down bugs, I know where they are. Kaduria has 49K lines of code and 5 open bugs and I know where they are. The thing is that you can easily take out 90% of memory corruption bugs with strict constructor-destructor and ownership rules (and not using raw arrays). You simply don't produce those bugs anymore, so you don't have to hunt them down with debugger. There are bugs after that, but mostly you know exactly where they are even without debugger.
It's very easy to keep bug count that low when your game is not released to the public. Make it available and you'll have bugs.
-
Edit: I'm lost with this discussion a bit. Did topic starter figure out how to use libtcod ot not?
All this MinGW bad, MinGW trash irritates me in some illogical way.
A bad mingw install was the cause of it. mingw is a buggy unreliable piece of garbage
There were three problems in the OP: a certain bug, library binary incompatibility and undeclared function symbol.
1. I hope no one really thinks that MSVC does not have bugs. All major compilers/IDEs have them in multitude, sometimes quite severe ones (MSVC examples would be invalid constructors generated, messed argument forwarding, high_resolution_clock having milliseconds resolution, etc.). The bug in the OP is fairly regular and have obvious workaround.
2. Binary incompatibility is how C++ works. It is a fairly common knowledge that you cannot mix object files and libraries build by different compilers or even compiler options. This applies to both MinGW (see wiki (http://www.mingw.org/wiki/Interoperability_of_Libraries_Created_by_Different_Compiler_Brands)) and MSVC (see SO (http://stackoverflow.com/questions/1600399/are-c-libs-created-with-different-versions-of-visual-studio-compatible-with-ea)). Edit: that's why BearLibTerminal uses dynamic linking with pure C API.
3. _hypot function that fail compilation is the most fair complaint. Scottberd must have stubled upon a link to some random or outdated MinGW build (like the one in the tutorial). It's like Linux with numerous distributions, takes some time to figure out and is the weakest part of MinGW community IMO. Use TDM build (http://tdm-gcc.tdragon.net/), it is a fairly sure bet and was one for quite a time. Or consult Qt wiki (http://qt-project.org/wiki/MinGW-64-bit). Also you should not think MSVC cannot choke on this (http://stackoverflow.com/questions/6809275/unresolved-external-symbol-hypot-when-using-static-library) just because underscored versions are also from MS.
GNU tools can't even display contents of a string properly
Well, they can (https://sourceware.org/gdb/wiki/STLSupport), from some time ago. It requires some additional configuring to enable so it's not quite there yet, but situation is improving.
Visual Studio just seems to provide a simple, yet capable and featureful, interface to debugging. Somehow these qualities are never quite cloned into open source, without losing what makes it so smooth and easy to use.
Lots of people are surprised to find out Unix IDEs have visual debugger tools too (https://wiki.eclipse.org/CDT/User/FAQ#Debugging_C.2FC.2B.2B_Projects). For the most part it is on par with MSVS, at least under Linux, but under Windows its 'native' debugger is superior.
The thing is that you can easily take out 90% of memory corruption bugs with strict constructor-destructor and ownership rules (and not using raw arrays). You simply don't produce those bugs anymore, so you don't have to hunt them down with debugger. There are bugs after that, but mostly you know exactly where they are even without debugger.
Ignorance is bliss, they say. Incorrect type sizes resulting in incorrect arithmetic, wrong function called with wrong argument passed, incorrect evaluation and initialization order dependencies, honest misprints, control flow errors, various things in external library internals, a certain OS version acting up. Pour in a few dozens of threads for good measure. I wish I could use debugger more often, with high load server-side I usually get some logs and one or two undamaged core dumps, if lucky.
-
It's very easy to keep bug count that low when your game is not released to the public. Make it available and you'll have bugs.
Current release of Teemu has I think two gameplay bugs and apparently couple of memory leaks according to some guy that ran it through Valgrind (in linux as the source code is available). The current development version is I think even better, although it has more source code (with potential bugs). It's not yet ready, but when it is I guess I'm releasing the source code as well so you can all check out for bugs! Isn't it exciting?
-
Well, they can (https://sourceware.org/gdb/wiki/STLSupport), from some time ago. It requires some additional configuring to enable so it's not quite there yet, but situation is improving.
Sure I know this stuff (what other choice do I really have if I need to debug my game on Linux?) , but it is still *very* far from the comfort VS has been offering since forever. STL has became a part of the standard back in 1994 (please correct me if I'm wrong), now we have 2015 and "situation is improving" does not make me a happy GCC user at all :).
-
I don't hunt down bugs, I know where they are. Kaduria has 49K lines of code and 5 open bugs and I know where they are.
Then I admire your programming prowess. A rate of 10k lines / bug is ... remarkable.
For us mortals, however, debuggers are useful tools.
-
Mushroom patch simulator has 185K lines of code and only one bug. I know where the bug is, but I follow the practice of ancient Persian carpet weavers by leaving one knot untied, because if I tied that last knot, my creation would be perfect.
-
It's mainly OOP that reduces bugs for me. But no matter what the language is the most important realization is that you as a programmer will create bugs. There is no way to prevent that, but you can decide what kind of bugs you create by looking at the way you handle memory management etc. And returning to actual topic it's the programmer's job trying to make C or C++ source code as standard as possible. I've found a great way to achieve that by making my source codes compile in both VC and GCC at the same time. That way you can't have any excuses for it not working in one of the most standard compilers there are.
-
3. _hypot function that fail compilation is the most fair complaint. Scottberd must have stubled upon a link to some random or outdated MinGW build (like the one in the tutorial).
Actually, no. That particular bug was found in January 2015. If you use the latest version of MinGW, you have to deal with this bug. You're fine if you use an older version, but good luck finding a reliable place to download such things. This bug caused me a huge headache at the end of the 7DRL challenge, since I couldn't compile libtcod properly without fixing it. There's a workaround here for it: http://ehc.ac/p/mingw/bugs/2250/ (http://ehc.ac/p/mingw/bugs/2250/)
Right now, the problem with libtcod is that you pretty much need to compile the library on your own to guarantee it will work. Once you do the workaround for compiling the library, the existing tutorials are pretty much sufficient. However, I've found that the tutorials for it tend to be unreliable because it encourages you to use the latest version of MinGW and stuff like this happens...
-
Right now, the problem with libtcod is that you pretty much need to compile the library on your own to guarantee it will work. Once you do the workaround for compiling the library, the existing tutorials are pretty much sufficient. However, I've found that the tutorials for it tend to be unreliable because it encourages you to use the latest version of MinGW and stuff like this happens...
That is far from the only problem with libtcod. While I applaud Jice for making it available years ago, and I assume it is/was undoubtedly a good solution to the needs of Doryen, as a general purpose lib today it has a huge number of shortcomings. The least of which is that the last stable release is dated August, 29 2012. A much bigger problem that has existed since its initial release is that it attempts to do way too much and, as a result, has a ton of cruft that is only usable in specific, narrow, use case scenarios. Add in the toolchain issues we have fought with for the past twenty years in the pursuit of portable C++ code and heh... much of this thread is illustrative.
I do believe we need new tutorials using narrowly scoped, modern, solutions, but... I'm not volunteering. There are way too many bad practices being encouraged these days and, frankly, the definition of roguelike has long past veered into the land of the lost and meaningless. As a point, personally I consider the entire 7DRL concept to be encouraging of bad practices in programming and design, so anything I would write would have zero appeal to those who disagree.
-
That particular bug was found in January 2015. If you use the latest version of MinGW, you have to deal with this bug. You're fine if you use an older version, but good luck finding a reliable place to download such things.
Can you describe what and where from had you downloaded to get such version? Out of all MinGW-related builds I am aware of (vanilla MinGW, MSYS2, MinGW-w64 and its personal builds, mingw32-builds and TDM; please share if you know something else worth noticing) I see only MSYS2 having something from this year, all others provide releases from late 2014 or earlier. And MSYS2 is not a complete MinGW build, it is an environment to help using an exising MinGW-w64 installation. Edit: I've realized you refer to the time bug was found. Any links?
4.8.1 and 4.9.2 from TDM and mingw32-builds (most recent available), with and without MSYS2 do build libtcod cleanly. Well, aside from ming32-builds not providing aliases hardcoded in jice's makefiles, just change 'mingw32-xyz' to 'xyz'. And for reliable places to download, I've pointer that a few times: start from Qt wiki (http://qt-project.org/wiki/MinGW-64-bit). TDM-GCC and mingw32-builds provide stable 4.8 and 4.9 builds and will continue to do so for some time.
-
That is far from the only problem with libtcod. While I applaud Jice for making it available years ago, and I assume it is/was undoubtedly a good solution to the needs of Doryen, as a general purpose lib today it has a huge number of shortcomings. The least of which is that the last stable release is dated August, 29 2012. A much bigger problem that has existed since its initial release is that it attempts to do way too much and, as a result, has a ton of cruft that is only usable in specific, narrow, use case scenarios. Add in the toolchain issues we have fought with for the past twenty years in the pursuit of portable C++ code and heh... much of this thread is illustrative.
I do believe we need new tutorials using narrowly scoped, modern, solutions, but... I'm not volunteering. There are way too many bad practices being encouraged these days and, frankly, the definition of roguelike has long past veered into the land of the lost and meaningless. As a point, personally I consider the entire 7DRL concept to be encouraging of bad practices in programming and design, so anything I would write would have zero appeal to those who disagree.
That's a nice thing bubbling in your sig. :)
Infra Arcana is a great game.
Whilst reserving your methods in order to make them current at some point, there is a lively thing going on regarding those few notches down the timescale. There is a fact, to be honest, that says how devs (and programmers in general) find their pioneering efforts most admirable at some point. Kinda loosenes 'em up, gives em' a big grin - if you know what I mean. :)
Now, I know how getting tough on all those malpractices certainly brings things up into perspective or at least makes you less self-aware, being that humans make mistakes.. and altough, for my part, I never liked things I couldn't finish - it all seemed quite simple upon reminescing. Even though a mere make-believe fail-attempt makes you frown once or twice, it actually brings you closer to the sense of achievement where perfection is more hard-earned, and less stumbled upon, vaguely embraced...
Be it somehow you agreed or disagreed, even flaws in foundations have their positive perks. And the simple things such as coding style, pseudo-programming guidelines or naming conventions - they all bring one's wisdom to our grasp, and even better if the practice is condoned by many. IMO, struggling with styles and specific workarounds when using a library of choice for developing a RL game for a challenge such as 7DRL is a sign of inexperience, nothing more. Remembering how making a RL is all about the attempt to create your own game brings up the simple truth which repeats itself through our programming endeavors, which is - errors are bound to happen.
Seeing that the year 2015 has started with some really good efforts from the community which I've been a fan of since, yeah, as long as I knew what OOP was made me enthusiastic on many levels. Upon seeing how players who've never asked what a RL game is venture into a procgen dungeon I found most assuring the thought of RL community getting better by the day. The errors, seen as mere obstacles that had to be crossed made me believe once again that coding RL games isn't a skillset that's either not there or it's witheld, but more of an art-form - a choice of deliberance to make a computer game as you imagined it.
-
Can you describe what and where from had you downloaded to get such version?
All I did was: uninstall and remove my previous version of MinGW, get the latest version from http://sourceforge.net/projects/mingw/files/ (http://sourceforge.net/projects/mingw/files/) using the "latest version" link, used the downloader to install it, used MSys to download the latest version of the source for libtcod (likely 1.6.0), and tried to build it. I only ran into the compile problem mentioned by OP, and did the workaround suggested in the link (added a compiler flag to the libtcod makefile), and then had no problems.
My comment about older versions of MinGW stem from me trying to find particular versions of it when I suddenly have an urge to program C/C++ after a year or three of not doing anything. I've resigned myself to just using the latest version, which isn't necessarily bad. I just found this particular bug with MinGW most annoying/amusing since I just noticed it on the final day of the 7DRL challenge.
-
get the latest version from http://sourceforge.net/projects/mingw/files/ using the "latest version" link
Well, that one is somewhat close to "random, outdated build" I mentioned earlier, though I did not think things stayed this bad. Unfortunately (and very counter-intuitively), MinGW build found at mingw.org is barely useable at most. And as far as I remember it was this way, but with alternative builds evolving, the difference between a proper build (there are at least two) and the 'vanilla' one became disheartening. It may be worth trying to contact mingw.org to make them include a brief overview of current situation at least.
MinGW from mingw.org (sf.net/projects/mingw) provides a version capable of compiling 32-bit binaries only. It does not let to choose exception mechanic. It uses win32 thread model so no C++11 threading support. The latest GCC version is 4.8.1 dated 2013 (there are 4.8.3 and 4.9.2 already). It uses fairly random packaging overall: _hypot is a problem present in mingwrt-3.21, which is somehow newer than mingwrt-4.0.3 (one with correct hypotf). And their repository is a mess. *deep sigh* MinGW as a project became better, but its titular instance did not.
Once again, just in case someone might stumble upon this, at this time proper builds are MinGW-w64 (http://mingw-w64.yaxm.org/doku.php)/mingw-builds (http://sourceforge.net/projects/mingwbuilds/) (joined recently) and TDM (http://tdm-gcc.tdragon.net/).
-
Turns out the binaries I compiled with _barf's suggestion were bizarrely buggy. The 'check if a key was pressed' function zeroed some variables when it detected a key press. I never did figure that out.
The eventual solution was just to use mingw-get to downgrade gcc and g++ to 4.6.2 and use the precompiled 1.5.1 source. This seems to be a stable solution.