Mercurial > hg > svcore
comparison configure @ 1038:cc27f35aa75c cxx11
Introducing the signed 64-bit frame index type, and fixing build failures from inclusion of -Wconversion with -Werror. Not finished yet.
author | Chris Cannam |
---|---|
date | Tue, 03 Mar 2015 15:18:24 +0000 |
parents | dbb7f0ab011e |
children | 98d4dabbf740 |
comparison
equal
deleted
inserted
replaced
1037:bf0e5944289b | 1038:cc27f35aa75c |
---|---|
4341 CXXFLAGS_DEBUG="$AUTOCONF_CXXFLAGS" | 4341 CXXFLAGS_DEBUG="$AUTOCONF_CXXFLAGS" |
4342 CXXFLAGS_RELEASE="$AUTOCONF_CXXFLAGS" | 4342 CXXFLAGS_RELEASE="$AUTOCONF_CXXFLAGS" |
4343 CXXFLAGS_MINIMAL="$AUTOCONF_CXXFLAGS" | 4343 CXXFLAGS_MINIMAL="$AUTOCONF_CXXFLAGS" |
4344 | 4344 |
4345 if test "x$GCC" = "xyes"; then | 4345 if test "x$GCC" = "xyes"; then |
4346 CXXFLAGS_DEBUG="-std=c++11 -Wall -Wextra -Werror -Woverloaded-virtual -Wformat-nonliteral -Wformat-security -Winit-self -Wswitch-enum -g -pipe" | 4346 CXXFLAGS_ANY="-std=c++11 -Wall -Wextra -Werror -Woverloaded-virtual -Wformat-nonliteral -Wformat-security -Winit-self -Wswitch-enum -Wconversion -pipe" |
4347 CXXFLAGS_RELEASE="-std=c++11 -g0 -O2 -Wall -pipe" | 4347 CXXFLAGS_DEBUG="$CXXFLAGS_ANY -g" |
4348 CXXFLAGS_MINIMAL="-std=c++11 -g0 -O0" | 4348 CXXFLAGS_RELEASE="$CXXFLAGS_ANY -g0 -O2" |
4349 CXXFLAGS_MINIMAL="$CXXFLAGS_ANY -g0 -O0" | |
4349 fi | 4350 fi |
4350 | 4351 |
4351 CXXFLAGS_BUILD="$CXXFLAGS_RELEASE" | 4352 CXXFLAGS_BUILD="$CXXFLAGS_RELEASE" |
4352 SV_DEFINES_BUILD="$SV_DEFINES_RELEASE" | 4353 SV_DEFINES_BUILD="$SV_DEFINES_RELEASE" |
4353 | 4354 |