Add compilation of the Elf code.

This commit is contained in:
Russel Winder
2009-07-28 16:49:16 +01:00
parent 083d9e7864
commit 82ba62a78f
2 changed files with 31 additions and 0 deletions

View File

@@ -37,3 +37,5 @@ libs = { }
crts = { }
for variant in [ 'baremetal' , 'userspace' ] :
( libs[variant] , crts[variant] ) = SConscript ( 'libs/c/SConscript' , variant_dir = 'build/lib/c/' + variant , duplicate = 0 , exports = { 'variant' : variant } )
libelf = SConscript ( 'libs/elf/SConscript' , variant_dir = 'build/lib/elf' , duplicate = 0 , exports = { 'lib' : libs['baremetal'] } )