diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-12 21:52:58 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-08-12 21:52:58 +0200 |
commit | 48b4e0eac16a23713698ea4cd088cd8c857e4c33 (patch) | |
tree | 9ad1d710268cbb5a405439d3e54cb9e926635048 /toolchain/uClibc/Makefile | |
parent | 5e4078831832697218a7bbe94571a985cce7bbc6 (diff) |
update gcc, kernel and uclibc Makefile
- bring rb532 in shape, make it bootable
Diffstat (limited to 'toolchain/uClibc/Makefile')
-rw-r--r-- | toolchain/uClibc/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index e393eba5b..69b5d343a 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -8,6 +8,11 @@ include ../rules.mk include Makefile.inc include ${TOPDIR}/mk/buildhlp.mk +#workaround for mips and gcc 4.4, where -Os does not inline code in ld.so +ifeq ($(ARCH),mips) +TARGET_CFLAGS:=$(subst Os,O2,$(TARGET_CFLAGS)) +endif + $(WRKBUILD)/.headers: $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(WRKBUILD)/Rules.mak sed -e 's^KERNEL_HEADERS.*$$KERNEL_HEADERS=\"${TOOLCHAIN_SYSROOT}/usr/include\"' \ |