🔨 Fix older GCC CXXFLAGS warning

This commit is contained in:
Scott Lahteine 2021-10-19 05:53:34 -05:00
parent 5f6d9e9f42
commit 30158424e9

View File

@ -3,13 +3,16 @@
# Convenience script to apply customizations to CPP flags
#
Import("env")
env.Append(CXXFLAGS=[
"-Wno-register"
cxxflags = [
#"-Wno-incompatible-pointer-types",
#"-Wno-unused-const-variable",
#"-Wno-maybe-uninitialized",
#"-Wno-sign-compare"
])
]
if "teensy" not in env['PIOENV']:
cxxflags += ["-Wno-register"]
env.Append(CXXFLAGS=cxxflags)
#
# Add CPU frequency as a compile time constant instead of a runtime variable