From 651dac9128703525aabc68a3aaee40b9704d19ed Mon Sep 17 00:00:00 2001 From: Marvin Liu Date: Thu, 19 Mar 2015 11:16:57 +0800 Subject: [PATCH] app/test: fix build with gcc < 4.4 Option var-tracking-assignments supported in gcc from 4.4. Add gcc version check wil fix this issue. error: unrecognized command line option "-fno-var-tracking-assignments" Fixes: 74adbc5ef704 ("app/test: disable variable tracking assignment for memcpy") Signed-off-by: Marvin Liu --- app/test/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test/Makefile b/app/test/Makefile index 9f0262c53f..4aca77c98d 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -152,9 +152,11 @@ CFLAGS += -D_GNU_SOURCE # Disable VTA for memcpy test ifeq ($(CC), gcc) +ifeq ($(shell test $(GCC_VERSION) -ge 44 && echo 1), 1) CFLAGS_test_memcpy.o += -fno-var-tracking-assignments CFLAGS_test_memcpy_perf.o += -fno-var-tracking-assignments endif +endif # this application needs libraries first DEPDIRS-y += lib -- 2.20.1