Fixed linker scripts on broken crt0.S path

This commit is contained in:
Bahadir Balban
2009-08-29 15:07:12 +03:00
parent 763d4c7012
commit 5892fba52a
5 changed files with 7 additions and 100 deletions

View File

@@ -36,10 +36,10 @@ objects = e.StaticObject(source)
Depends (objects, e['configFiles'])
library = e.StaticLibrary('c-' + variant, objects)
Depends (library, e['configFiles'])
runTime = e.StaticObject('crt/sys-' + variant + '/arch-' + e['ARCH'] + '/crt0.S')
Depends (runTime, e['configFiles'])
#runTime = e.StaticObject('crt/sys-' + variant + '/arch-' + e['ARCH'] + '/crt0.S')
#Depends (runTime, e['configFiles'])
result = (library, runTime)
#result = (library)
#result = (library, runTime)
result = (library)
Return('result')