mirror of
https://github.com/1technophile/OpenMQTTGateway.git
synced 2026-02-20 08:42:09 +01:00
* Update Arduino core to v3.3.2 and use custom Arduino libs * Update Python version and install uv in build.yml (#2247) Updated Python version and added uv installation step. --------- Co-authored-by: Ryan Powell <ryan@nable-embedded.io> * fix builds * Update scripts/add_c_flags.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fetch archives instead of cloning libraries * Update to Arduino 3.3.3 --------- Co-authored-by: h2zero <powellperalata@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
9 lines
239 B
Python
9 lines
239 B
Python
Import("env")
|
|
|
|
|
|
# General options that are passed to the C++ compiler
|
|
env.Append(CXXFLAGS=["-Wno-volatile"])
|
|
|
|
# General options that are passed to the C compiler (C only; not C++).
|
|
env.Append(CFLAGS=["-Wno-implicit-function-declaration"])
|