Add a PlatformIO hook to alter CXXFLAGS
This commit is contained in:
12
buildroot/share/PlatformIO/scripts/common-cxxflags.py
Normal file
12
buildroot/share/PlatformIO/scripts/common-cxxflags.py
Normal file
@ -0,0 +1,12 @@
|
||||
#
|
||||
# common-cxxflags.py
|
||||
# Convenience script to apply customizations to CPP flags
|
||||
#
|
||||
Import("env")
|
||||
env.Append(CXXFLAGS=[
|
||||
"-Wno-register"
|
||||
#"-Wno-incompatible-pointer-types",
|
||||
#"-Wno-unused-const-variable",
|
||||
#"-Wno-maybe-uninitialized",
|
||||
#"-Wno-sign-compare"
|
||||
])
|
Reference in New Issue
Block a user