[scripts] add parallel building script and use it in most build scripts

This commit is contained in:
Travis Geiselbrecht
2019-03-30 20:02:18 -07:00
parent 4148863969
commit 41a7937444
17 changed files with 94 additions and 50 deletions

View File

@@ -1,4 +1,9 @@
#!/bin/sh
#!/usr/bin/env bash
make qemu-mips-test -j4 &&
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
set -e
set -x
$DIR/make-parallel qemu-mips-test
qemu-system-mips -machine mips -cpu M14K -kernel build-qemu-mips-test/lk.elf -nographic $@