diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-11-18 03:33:48 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-12-22 04:42:53 -0500 |
commit | 1aad54a99b6ce316c851ba99b2efe41998cfd37d (patch) | |
tree | 287f90771c7da18a0841d40db1c0ce92ea7f5820 /arch/sh/lib/Makefile | |
parent | e9bf51e5ccc7703226c79888603e157066213700 (diff) |
sh: Migrate necessary libgcc bits in to arch/sh/lib for SUPERH32.
This moves in the necessary libgcc bits for SUPERH32 and drops the
libgcc linking for the regular targets. This in turn allows us to rip
out quite a few hacks both in sh_ksyms_32 and arch/sh/Makefile.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/lib/Makefile')
-rw-r--r-- | arch/sh/lib/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/sh/lib/Makefile b/arch/sh/lib/Makefile index 596421821d08..a30acb8342d9 100644 --- a/arch/sh/lib/Makefile +++ b/arch/sh/lib/Makefile | |||
@@ -5,6 +5,18 @@ | |||
5 | lib-y = delay.o memset.o memmove.o memchr.o \ | 5 | lib-y = delay.o memset.o memmove.o memchr.o \ |
6 | checksum.o strlen.o div64.o div64-generic.o | 6 | checksum.o strlen.o div64.o div64-generic.o |
7 | 7 | ||
8 | # Extracted from libgcc | ||
9 | lib-y += movmem.o ashldi3.o ashrdi3.o lshrdi3.o \ | ||
10 | ashlsi3.o ashrsi3.o ashiftrt.o lshrsi3.o \ | ||
11 | udiv_qrnnd.o | ||
12 | |||
13 | udivsi3-y := udivsi3-Os.o | ||
14 | |||
15 | ifneq ($(CONFIG_CC_OPTIMIZE_FOR_SIZE),y) | ||
16 | udivsi3-$(CONFIG_CPU_SH3) := udivsi3.o | ||
17 | udivsi3-$(CONFIG_CPU_SH4) := udivsi3.o | ||
18 | endif | ||
19 | |||
8 | obj-y += io.o | 20 | obj-y += io.o |
9 | 21 | ||
10 | memcpy-y := memcpy.o | 22 | memcpy-y := memcpy.o |
@@ -12,6 +24,6 @@ memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o | |||
12 | 24 | ||
13 | lib-$(CONFIG_MMU) += copy_page.o clear_page.o | 25 | lib-$(CONFIG_MMU) += copy_page.o clear_page.o |
14 | lib-$(CONFIG_FUNCTION_TRACER) += mcount.o | 26 | lib-$(CONFIG_FUNCTION_TRACER) += mcount.o |
15 | lib-y += $(memcpy-y) | 27 | lib-y += $(memcpy-y) $(udivsi3-y) |
16 | 28 | ||
17 | EXTRA_CFLAGS += -Werror | 29 | EXTRA_CFLAGS += -Werror |