Re: [OpenWrt-Devel] [PATCH] Fix EABI support for armv4 CPUs.

2011-02-28 Thread Sven Bachmann
On 02/28/2011 12:33 PM, Jochen Friedrich wrote: Hi Sven, https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005018.html https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005034.html It contains a GCC fix to correctly handover this flag from GCC to the linker. I al

Re: [OpenWrt-Devel] [PATCH] Fix EABI support for armv4 CPUs.

2011-02-28 Thread Jochen Friedrich
Hi Sven, https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005018.html https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005034.html It contains a GCC fix to correctly handover this flag from GCC to the linker. I also had to disable the USE_BX config variable in u

Re: [OpenWrt-Devel] [PATCH] Fix EABI support for armv4 CPUs.

2011-02-27 Thread Sven Bachmann
Hi Jochen, I encountered this problem some time before, please have a look at: https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005018.html https://lists.openwrt.org/pipermail/openwrt-devel/2009-September/005034.html It contains a GCC fix to correctly handover this flag from GCC

Re: [OpenWrt-Devel] [PATCH] Fix EABI support for armv4 CPUs.

2011-02-15 Thread Jochen Friedrich
Hi, +ifneq ($(findstring -march=armv4,$(TARGET_OPTIMIZATION)),) + GCC_CONFIGURE+= \ + --with-arch=armv4 +endif Unfortunately, this has a flaw as this matches armv4t, as well. A new patch will follow. Thanks, Jochen ___ openwrt-devel m

[OpenWrt-Devel] [PATCH] Fix EABI support for armv4 CPUs.

2011-02-14 Thread Jochen Friedrich
Signed-off-by: Jochen Friedrich --- toolchain/gcc/common.mk |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/toolchain/gcc/common.mk b/toolchain/gcc/common.mk index 0f22e41..971ca62 100644 --- a/toolchain/gcc/common.mk +++ b/toolchain/gcc/common.mk @@ -167,6 +167,11 @@