From 36a459130422d7e6b8b7a0f6f539b79a0ab32b23 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 4 Jul 2016 22:14:51 -0400 Subject: [PATCH] Fix typo for -std=gnu++03 --- cryptest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptest.sh b/cryptest.sh index 6b04f892..d177cd1e 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -229,7 +229,7 @@ fi if [[ (-z "$HAVE_GNU03") ]]; then HAVE_GNU03=0 - "$CXX" -DCRYPTOPP_ADHOC_MAIN -std=c++03 adhoc.cpp -o "$TMP/adhoc.exe" > /dev/null 2>&1 + "$CXX" -DCRYPTOPP_ADHOC_MAIN -std=gnu++03 adhoc.cpp -o "$TMP/adhoc.exe" > /dev/null 2>&1 if [[ "$?" -eq "0" ]]; then HAVE_GNU03=1 fi