Tasmota/pio-tools/add_c_flags.py

8 lines
267 B
Python
Raw Normal View History

Import("env")
# General options that are passed to the C compiler (C only; not C++).
2022-01-01 17:08:50 +00:00
env.Append(CFLAGS=["-Wno-discarded-qualifiers", "-Wno-implicit-function-declaration"])
# General options that are passed to the C++ compiler
env.Append(CXXFLAGS=["-Wno-volatile"])