Messages in this thread |  | | Date | Thu, 7 Feb 2013 18:13:15 +0000 | From | Russell King - ARM Linux <> | Subject | Re: [RFC] arm: use built-in byte swap function |
| |
On Wed, Feb 06, 2013 at 07:19:05PM -0600, Kim Phillips wrote: > either that, or link with libgcc - why does arch/arm64 do this and > arch/arm not? It's not obvious from git log.
We want to be in control of what code the kernel runs, and that means not using libgcc. libgcc can do all sorts of stuff because it makes assumptions about the environment which it is executing in (glibc).
For example, it assumes there may be a GOT, and that it can issue SWI calls...
However, the biggest reason not to use libgcc is that we want to control what gets used in the kernel - for example, no floating point, and no use of 64 x 64bit division.
So all round, using libgcc in AArch32 would bring us a number of issues that we don't get with the current approach.
AArch64 uses it because it's maintained entirely separately and the decision has been made by other people - and some of these concerns do not exist on a 64-bit architecture.
|  |