Regarding the change in SDL's make rules.
I am using "ti-processor-sdk-rtos-j7200-evm-08_04_00_04".
I would like to create and use an SDL library that matches the settings of my environment.
For that, I changed the make rule "<SDK>/sdl/build/makerules/rules_r5f.mk".
Will this change affect the functionality of SDL?
Here are the changes:
---------------------------------------------------
# Internal CFLAGS - normally doesn't change
#CFLAGS_INTERNAL = -c -Wall -Werror $(SUPRESS_WARNINGS_FLAG) -$(RTSLIB_ENDIAN) -eo.$(OBJEXT) -ea.$(ASMEXT) -g -mfloat-abi=hard
CFLAGS_INTERNAL = -c -Wall -Werror $(SUPRESS_WARNINGS_FLAG) -$(RTSLIB_ENDIAN) -eo.$(OBJEXT) -ea.$(ASMEXT) -g -mfloat-abi=soft
# Vector Floating-Point co-processor instructions, vfpv3d16 is supported in R4/R5
#CFLAGS_INTERNAL += -mfpu=vfpv3-d16 -mcpu=cortex-r5 -march=armv7-r
CFLAGS_INTERNAL += -mcpu=cortex-r5 -march=armv7-r
---------------------------------------------------