From 6d03c77592d8ca7f8ede15231a7a887e896db4d9 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Thu, 23 Mar 2017 10:52:45 -0700 Subject: [PATCH] Fix cygwin by using std=gnu++0x --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f92779ac..3d7543ab 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ link_flags = [] else: flags = [ - '-fPIC', '-std=c++0x', '-Wall', '-Wno-parentheses', '-Werror=switch', + '-fPIC', '-std=gnu++0x', '-Wall', '-Wno-parentheses', '-Werror=switch', ] platform.mac_ver() if platform.system() in ['Darwin', 'FreeBSD']: