diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-14 11:50:48 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-14 11:50:48 +0200 |
commit | e0bc31d6aeddd5cae6dd5f4726defb2370d7df26 (patch) | |
tree | 928150ea72c7215ac546d7482596c2880c0188e9 | |
parent | 7ac44464b06ec9a796fd10cdcd8b9996e7400520 (diff) |
disable cris for now, problem with toolchain building, enable qemu for autobuilder
-rw-r--r-- | mk/build.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/build.mk b/mk/build.mk index 2251f499c..2e774a7ae 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -578,9 +578,9 @@ bulktoolchain: # build all target architecture, target systems and libc combinations bulk: - for libc in uclibc eglibc glibc;do \ + for libc in uclibc eglibc glibc musl;do \ while read arch; do \ - systems=$$(./scripts/getsystems $$arch|grep -v toolchain|grep -v qemu); \ + systems=$$(./scripts/getsystems $$arch|grep -v toolchain|grep -v qemu-cris|grep -v foxboard-lx); \ for system in $$systems;do \ mkdir -p $(TOPDIR)/bin/$${system}_$${arch}_$$libc; \ ( \ @@ -598,7 +598,7 @@ bulk: bulkall: for libc in uclibc eglibc glibc musl;do \ while read arch; do \ - systems=$$(./scripts/getsystems $$arch| grep -v toolchain|grep -v qemu); \ + systems=$$(./scripts/getsystems $$arch| grep -v toolchain|grep -v qemu-cris|grep -v foxboard-lx); \ for system in $$systems;do \ mkdir -p $(TOPDIR)/bin/$${system}_$${arch}_$$libc; \ ( \ @@ -616,7 +616,7 @@ bulkall: bulkallmod: for libc in uclibc eglibc glibc musl;do \ while read arch; do \ - systems=$$(./scripts/getsystems $$arch| grep -v toolchain|grep -v qemu); \ + systems=$$(./scripts/getsystems $$arch| grep -v toolchain|grep -v qemu-cris|grep -v foxboard-lx); \ for system in $$systems;do \ mkdir -p $(TOPDIR)/bin/$${system}_$${arch}_$$libc; \ ( \ |