From 385f8d88c1806073715f1bb72df4a42e1d99dde4 Mon Sep 17 00:00:00 2001 From: Naveen Albert Date: Fri, 24 Jan 2025 09:35:50 -0500 Subject: [PATCH] app_sms: Ignore false positive vectorization warning. Ignore gcc warning about writing 32 bytes into a region of size 6, since we check that we don't go out of bounds for each byte. This is due to a vectorization bug in gcc 15. Resolves: #1088 --- apps/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/Makefile b/apps/Makefile index 50b3fccc8f..7e125ccea8 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -52,6 +52,7 @@ $(call MOD_ADD_C,app_confbridge,$(wildcard confbridge/*.c)) app_confbridge.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) app_meetme.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) app_minivm.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) +app_sms.o: _ASTCFLAGS+=-fno-tree-vectorize app_voicemail.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) -DFILE_STORAGE app_voicemail_odbc.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) -DODBC_STORAGE app_voicemail_imap.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) -DIMAP_STORAGE