Changeset - r12964:c72df77fd161
[Not reviewed]
master
0 1 0
smatz - 15 years ago 2009-09-07 21:45:26
smatz@openttd.org
(svn r17468) -Fix (r17464): mingw compilation was broken
1 file changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
config.lib
Show inline comments
 
@@ -1107,8 +1107,9 @@ make_compiler_cflags() {
 
		fi
 

	
 
		if [ $cc_version -ge 43 ]; then
 
			# Use c++0x mode so static_assert() is available
 
			cxxflags="$cxxflags -std=c++0x"
 
			# Use gnu++0x mode so static_assert() is available.
 
			# Don't use c++0x, it breaks mingw (with gcc 4.4.0).
 
			cxxflags="$cxxflags -std=gnu++0x"
 
		fi
 

	
 
		has_rdynamic=`$1 -dumpspecs | grep rdynamic`
0 comments (0 inline, 0 general)