C11/C++11 are the default for the RTEMS 4.12 GCC

This commit is contained in:
Sebastian Huber
2017-02-21 08:34:58 +01:00
parent 284ff16f82
commit 2a5d001ddb
2 changed files with 4 additions and 4 deletions

View File

@@ -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 = []