diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-28 17:30:22 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-28 17:30:22 +0100 |
commit | 320e16528ea6a9eba54bac0161e2331093075647 (patch) | |
tree | c6f8090dd0ce8452f70252b5841fecabc28cb66d /toolchain/eglibc/Makefile | |
parent | b1b2509e980eb1b0973b1754511353e8415a1a0c (diff) |
convert microblaze to miniconfig kernel config generation, add support for squashfs and jffs2 rootfs for qemu-microblaze, add support for both machine emulations
Diffstat (limited to 'toolchain/eglibc/Makefile')
-rw-r--r-- | toolchain/eglibc/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index 12f193c3b..276b468d4 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -8,6 +8,9 @@ include ../rules.mk ifeq ($(ADK_LINUX_SPARC),y) TARGET_CFLAGS_LIBC:= $(subst Os,O2,$(TARGET_CFLAGS)) endif +ifeq ($(ADK_LINUX_MICROBLAZE),y) +TARGET_CFLAGS_LIBC:= $(subst Os,O2,$(TARGET_CFLAGS)) +endif # ssp not supported TARGET_CFLAGS_LIBC:= $(filter-out -fstack-protector,$(TARGET_CFLAGS_LIBC)) |