🔨 Single precision float

This commit is contained in:
Scott Lahteine
2025-12-12 17:09:13 -06:00
parent b99f5c3618
commit 89379cd373
9 changed files with 4 additions and 10 deletions
@@ -19,7 +19,6 @@ if __name__ == "__main__":
"-fsigned-char",
"-fno-move-loop-invariants",
"-fno-strict-aliasing",
"-fsingle-precision-constant",
"--specs=nano.specs",
"--specs=nosys.specs",
@@ -14,7 +14,7 @@ if pioutil.is_pio_build():
# "-Wno-sign-compare",
"-fno-sized-deallocation"
]
if "teensy" not in env["PIOENV"]:
if "teensy" not in env["PIOENV"] and "esp32" not in env["PIOENV"]:
cxxflags += ["-Wno-register"]
env.Append(CXXFLAGS=cxxflags)
env.Append(CFLAGS=["-Wno-implicit-function-declaration"])