From 0bfe0071f87c56990dbc38c9c7e24b8c955eef2e Mon Sep 17 00:00:00 2001 From: Bahadir Balban Date: Fri, 14 Aug 2009 17:13:25 +0300 Subject: [PATCH] Changed linker script name to linker.lds from mylink.lds --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 60f239c..411be74 100644 --- a/SConstruct +++ b/SConstruct @@ -157,7 +157,7 @@ else : # We don't use -nostdinc because sometimes we need standard headers, such as stdarg.h e.g. for variable # args, as in printk(). CCFLAGS = ['-mcpu=arm926ej-s', '-g', '-nostdlib', '-ffreestanding', '-std=gnu99', '-Wall', '-Werror'], - LINKFLAGS = ['-nostdlib', '-T' + includeDirectory + '/l4/arch/' + arch + '/mylink.lds'], + LINKFLAGS = ['-nostdlib', '-T' + includeDirectory + '/l4/arch/' + arch + '/linker.lds'], ASFLAGS = ['-D__ASSEMBLY__'], PROGSUFFIX = '.axf', LIBS = ['gcc'],