diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-09-12 14:21:25 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-12 14:21:25 +0900 |
commit | ccdfc526a92c5ebb549a7de06adca3fd54f03c7e (patch) | |
tree | 81125623328b30bc8a80b9b5736f748947eed5f9 /arch/sh64 | |
parent | 05ff0e291af086f4325bac76abad250690bbbd63 (diff) | |
download | linux-ccdfc526a92c5ebb549a7de06adca3fd54f03c7e.tar.bz2 |
sh64: Drop deprecated ISA tuning for legacy toolchains.
The original sh64 toolchains required that we tune the ISA
level accordingly to not have head.S/entry.S blow up. With
current toolchains, this is no longer the case, and the
syntax magically changed as well, causing all current
toolchains to die a horrible death.
Incidentally, code generation in other parts of the kernel
is now significantly complex enough that none of the older
toolchains make it very far these days, so there's not
even any point in preserving legacy compatability via
as-option.
This fixes a long-standing issue, as noted here:
http://lkml.org/lkml/2005/1/5/223
Though at the time the current toolchains were too broken
to make adjusting the tuning worthwhile.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/sh64/Makefile b/arch/sh64/Makefile index 8ca57ffa2b70..ebf20043991c 100644 --- a/arch/sh64/Makefile +++ b/arch/sh64/Makefile @@ -26,7 +26,6 @@ LDFLAGS += -EB -mshelf32_linux endif # No requirements for endianess support from AFLAGS, 'as' always run through gcc -AFLAGS += -m5 -isa=sh64 -traditional CFLAGS += $(cpu-y) LDFLAGS_vmlinux += --defsym phys_stext=_stext-$(CONFIG_CACHED_MEMORY_OFFSET) \ |