summaryrefslogtreecommitdiff
path: root/src/ldso/arm
AgeCommit message (Collapse)AuthorLines
2012-05-27add ldd and main program loading support to dynamic linkerRich Felker-0/+7
2012-05-27cleanup dynamic linker start code cruftRich Felker-4/+1
two actual issues: one is that __dynlink no longer wants/needs a GOT pointer argument, so the code to generate that argument can be removed. the other issue was that in the i386 code, argc/argv were being loaded into registers that would be call-clobbered, then copied to preserved registers, rather than just being loaded into the proper call-preserved registers to begin with. this cleanup is in preparation for adding new dynamic linker functionality (ability to explicitly invoke the dynamic linker to run a program).
2011-10-01dlsym entry point for armRich Felker-0/+6
2011-10-01dynamic linker entry point for armRich Felker-0/+14
mildly tested, seems to work