From 4b37be0e22b712bad10aa761e1a419c40d339e8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nagy=20K=C3=A1roly=20G=C3=A1briel?= Date: Mon, 2 May 2016 14:46:00 +0300 Subject: [PATCH] gcc: fixed handling of GNU-11 flag. --- base/gcc/parse-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/gcc/parse-config b/base/gcc/parse-config index bb31e418f..131e87526 100644 --- a/base/gcc/parse-config +++ b/base/gcc/parse-config @@ -166,7 +166,7 @@ if hasflag GNU99; then var_append GCC_WRAPPER_INSERT ' ' '-std=gnu99' var_append SYSGCC_WRAPPER_INSERT ' ' '-std=gnu99' fi -if hasflag GNU++11; then +if hasflag GNU-11; then var_append CXX_WRAPPER_INSERT ' ' '-std=gnu++11' var_append GCC_WRAPPER_INSERT ' ' '-std=gnu++11' var_append SYSGCC_WRAPPER_INSERT ' ' '-std=gnu++11'