From 09cd729c861fe2fbd5f9ae469419725704bcb7df Mon Sep 17 00:00:00 2001 From: P L Sai Krishna Date: Wed, 29 Jul 2015 19:57:35 +0530 Subject: [PATCH] xilffs: Used --create option for armcc compiler. This patch use --create option for armcc compiler instead of rc option. Signed-off-by: P L Sai Krishna Reviewed-by: Harini Katakam --- lib/sw_services/xilffs/src/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/sw_services/xilffs/src/Makefile b/lib/sw_services/xilffs/src/Makefile index 7115fab6..9445c1a2 100644 --- a/lib/sw_services/xilffs/src/Makefile +++ b/lib/sw_services/xilffs/src/Makefile @@ -37,9 +37,13 @@ COMPILER_FLAGS= ifeq ($(notdir $(COMPILER)) , iccarm) EXTRA_ARCHIVE_FLAGS=--create +else +ifeq ($(notdir $(COMPILER)) , armcc) + EXTRA_ARCHIVE_FLAGS=--create else EXTRA_ARCHIVE_FLAGS=rc endif +endif RELEASEDIR=../../../lib INCLUDEDIR=../../../include