diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2014-04-25 01:52:46 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-23 15:11:14 +0200 |
commit | 593d33fe334761853890f2f84ed41e7c24051de2 (patch) | |
tree | 287e46a176c1f28b2676b1efee983542113d8388 /arch/mips/Kbuild | |
parent | f71baa1168ec3440f51e616c107a6615f5d752f8 (diff) | |
download | blackbird-op-linux-593d33fe334761853890f2f84ed41e7c24051de2.tar.gz blackbird-op-linux-593d33fe334761853890f2f84ed41e7c24051de2.zip |
MIPS: math-emu: Move various objects into an ar library.
ieee754d.o contains only debug code and dp_sqrt.o and sp_sqrt.o contain
code which for MIPS I/II/III systems we don't want to link. Again the
savings can be considerable for some systems:
$ mips-linux-size --totals ieee754d.o dp_sqrt.o sp_sqrt.o
text data bss dec hex filename
1624 0 0 1624 658 ieee754d.o
2016 0 0 2016 7e0 dp_sqrt.o
736 0 0 736 2e0 sp_sqrt.o
4376 0 0 4376 1118 (TOTALS)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/Kbuild')
-rw-r--r-- | arch/mips/Kbuild | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/mips/Kbuild b/arch/mips/Kbuild index d2cfe45f332b..cc39966ca63d 100644 --- a/arch/mips/Kbuild +++ b/arch/mips/Kbuild @@ -16,7 +16,6 @@ obj- := $(platform-) obj-y += kernel/ obj-y += mm/ -obj-y += math-emu/ ifdef CONFIG_KVM obj-y += kvm/ |