diff options
| author | Damien George <damien@micropython.org> | 2024-06-27 11:17:59 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-06-27 11:17:59 +1000 |
| commit | 74f52374e49e3b2370c5fec0e9cfbadc7ec8121e (patch) | |
| tree | 66bafe94480ca77ed7b5a30fb55d5d20215ba3d9 | |
| parent | 880f7bc0406a1ef249c833e1a88c023cd339ecf6 (diff) | |
extmod/extmod.mk: Disable maybe-uninitialized warnings in libm_dbl.
These warnings are emitted by arm-none-eabi-gcc 14.1.0 with -O2 enabled.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | extmod/extmod.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/extmod.mk b/extmod/extmod.mk index f7c6f9988..2207c21f0 100644 --- a/extmod/extmod.mk +++ b/extmod/extmod.mk @@ -167,6 +167,7 @@ SRC_LIB_LIBM_DBL_SQRT_HW_C += lib/libm_dbl/thumb_vfp_sqrt.c # Too many warnings in libm_dbl, disable for now. $(BUILD)/lib/libm_dbl/%.o: CFLAGS += -Wno-double-promotion -Wno-float-conversion +$(BUILD)/lib/libm_dbl/__rem_pio2_large.o: CFLAGS += -Wno-maybe-uninitialized ################################################################################ # VFS FAT FS |
