This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TMS320F28375D: getting warning of ignore_align_flags after makefile

Part Number: TMS320F28375D
Other Parts Discussed in Thread: CONTROLSUITE, C2000WARE

My customer is getting a warning that says "--ignore_align_flags ignored; this option is obsolete and no longer supported". I am trying to identify the command option in the makefile to disable this warning. Here is a small snippet from the file:

# Defines needed at compile time
COMPILE_DEFINES = \
	--define=_ON_TESTER=1 \
	--define=_DEBUG \
	--define=LARGE_MODEL \
	--asm_define=ON_TESTER=1 \

# Add debug define symbol if in debug mode
ifeq ($(BUILD),debug)
	COMPILE_DEFINES += --define=_DEBUG
endif

# Set compiler/linker options
OPTIONS = -v28 -mt -ml --float_support=fpu32 -g $(COMPILE_DEFINES) --display_error_number --diag_suppress=16002 --diag_wrap=off
CFLAGS = --preproc_with_compile --obj_directory=$(OBJDIR) --c_src_interlist --asm_listing --cross_reference
LFLAGS = -z -m$(TARGET).map --stack_size=0x300 --warn_sections --reread_libs --display_error_number --xml_link_info=$(TARGET)_linkInfo.xml --rom_model -k -o $(TARGET).out

Can you help me with eliminating this warning?

Thank you!