Merge pull request #2391 from openmv/makefile_update

misc/Makefile: Remove uninitialized flag.
This commit is contained in:
Ibrahim Abdelkader 2024-08-28 14:44:31 +03:00 committed by GitHub
commit 00f71413b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -78,7 +78,7 @@ OMV_COMMON_DIR=$(TOP_DIR)/$(OMV_DIR)/common
# Debugging/Optimization
ifeq ($(DEBUG), 1)
ROM_TEXT_COMPRESSION = 0
CFLAGS += -Og -ggdb3 -Wno-maybe-uninitialized
CFLAGS += -Og -ggdb3
else
DEBUG=0
ROM_TEXT_COMPRESSION = 1