Rearrange include path and linker script specification so as to get a successful compile.

Link not yet successful since physical_base.lds is not yet made.
This commit is contained in:
Russel Winder
2009-08-05 10:23:00 +01:00
parent 02d3c9f07c
commit a14ff1be5c
4 changed files with 5 additions and 4 deletions

View File

@@ -195,8 +195,9 @@ else :
LINKFLAGS = [ '-nostdlib' ] ,
ASFLAGS = [ '-D__ASSEMBLY__' ] ,
LIBS = taskLibraries + [ 'gcc' , libs['userspace'] ] ,
PROGSUFFIX = '.axf' ,
CPPDEFINES = [ '__USERSPACE__' ] ,
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory ] )
CPPPATH = [ '#' + buildDirectory , '#' + buildDirectory + '/l4' , '#' + includeDirectory , 'include' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include'] )
tasks = [ ]
for task in [ f.name for f in Glob ( 'tasks/*' ) if f.name not in taskLibraryNames + [ 'bootdesc' ] ] :