about summary refs log tree commit diff
path: root/crt/microblaze
Commit message (Collapse)AuthorAgeFilesLines
* remove hand-written crt1.s and Scrt1.s files for all archsRich Felker2015-10-141-16/+0
| | | | | | | | | | | | | | since commit c5e34dabbb47d8e97a4deccbb421e0cd93c0094b, crt1.c has provided a "mostly-C" implementation of the crt1 start file that avoids the need for arch-specific symbol referencing, PIC/PIE-specific code variants, etc. but for archs that had existing hand-written versions, the new code was initially unused, and later only used as the dynamic linker entry point. this commit switches all archs to using the new code. the code being removed was a recurring source of subtle errors, and was still broken at least on arm, where it failed to properly align the stack pointer before calling into C code.
* microblaze portRich Felker2012-09-293-0/+38
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.