From 046a3a3643b5c86289b343b7c4bc584a6e2a086c Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Mon, 9 Apr 2018 10:47:06 +0100 Subject: [PATCH] build-all: also build gem5, document further --- build-all | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build-all b/build-all index b48f755..703b5eb 100755 --- a/build-all +++ b/build-all @@ -1,4 +1,10 @@ #!/usr/bin/env bash +set -eux +# Build all archs (that we care the most about). +# Will take forever from a clean repo, this is most useful +# after pulling the repository to do an incremental build +# then quickly test out all the setups. for arch in x86_64 arm aarch64; do ./build -a "$arch" -klq + ./build -a "$arch" -g -Gkl done