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

@@ -20,7 +20,7 @@
Import ( 'environment' )
e = environment.Clone ( )
e.Append ( CPPPATH = [ 'include' , '#tasks/libl4/include' , '#tasks/libmem' , '#tasks/libposix/include' ] )
e.Append ( LINKFLAGS = [ '-Ttasks/test0/include/linker.lds' ] )
objects = e.StaticObject ( Glob ( '*.c' ) + Glob ( 'src/*.c' ) )
Depends ( objects , e['configFiles'] )