The Elf library doesn't actually depend on the baremetal library since there is no link phase, remove the dependency.

This commit is contained in:
Russel Winder
2009-08-01 08:41:30 +01:00
parent a79206f8d9
commit 238e05fd5d

View File

@@ -17,10 +17,9 @@
#
# Author: Russel Winder
Import ( 'environment' , 'lib' )
Import ( 'environment' )
e = environment.Clone ( )
e.Append ( LIBS = lib )
e.Append ( CPPPATH = [ 'include' , '#libs/c/include' , '#libs/c/include/arch/' + e['ARCH'] ] )
result = e.StaticLibrary ( 'elf' , Glob ( 'src/*.c' ) )