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
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
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
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
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 @@