summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuilder.py4
-rw-r--r--libbsd_waf.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/builder.py b/builder.py
index a9e991c3..bd7f6f96 100755
--- a/builder.py
+++ b/builder.py
@@ -199,10 +199,10 @@ def cpuIncludes():
'-Ifreebsd/sys/@CPU@/include']
def cflags():
- return ['-std=gnu11']
+ return []
def cxxflags():
- return ['-std=gnu++11']
+ return []
def headerPaths():
# local path wildcard dest path
diff --git a/libbsd_waf.py b/libbsd_waf.py
index ef3150b1..651645db 100644
--- a/libbsd_waf.py
+++ b/libbsd_waf.py
@@ -45,8 +45,8 @@ def build(bld):
common_flags += ["-Wno-pointer-sign"]
else:
common_flags += ["-w"]
- cflags = ['-std=gnu11'] + common_flags
- cxxflags = ['-std=gnu++11'] + common_flags
+ cflags = [] + common_flags
+ cxxflags = [] + common_flags
# Defines
defines = []