summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeah Woods <info@minifree.org>2016-05-18 21:11:55 (EDT)
committer Leah Woods <info@minifree.org>2016-05-18 21:11:55 (EDT)
commit4ec96b04fc8ccf9164a85f05eca26e542be87d39 (patch)
treef143fec726fa24efb0528a333c069dbeb68b0484
parent378e04e968a469f89cc410493d604cb9d12eea18 (diff)
downloadlibreboot-4ec96b04fc8ccf9164a85f05eca26e542be87d39.zip
libreboot-4ec96b04fc8ccf9164a85f05eca26e542be87d39.tar.gz
libreboot-4ec96b04fc8ccf9164a85f05eca26e542be87d39.tar.bz2
build only x86 and arm gcc
-rwxr-xr-xresources/scripts/helpers/build/module/crossgcc4
1 files changed, 3 insertions, 1 deletions
diff --git a/resources/scripts/helpers/build/module/crossgcc b/resources/scripts/helpers/build/module/crossgcc
index de96ca1..c586aab 100755
--- a/resources/scripts/helpers/build/module/crossgcc
+++ b/resources/scripts/helpers/build/module/crossgcc
@@ -38,6 +38,8 @@ fi
(
cd "crossgcc/"
-make crossgcc CPUS=${cores}
+for architecture in i386 arm; do
+ make crossgcc-${architecture} CPUS=${cores}
+done
)