From c05b619dabc2a293ad1c7d4cf8c566dca54b34a0 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 13 May 2018 11:34:03 +0200 Subject: Makefile: print uname in install_prerequisites Travis is still broken with: E: Unable to locate package gcc-aarch64-linux-gnu E: Unable to locate package gcc-arm-linux-gnueabihf E: Unable to locate package gcc-powerpc64le-linux-gnu https://travis-ci.org/google/syzkaller/jobs/378034948 Let's at least see what's OS is there and what gcc packages present. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f8f29a188..462dc2253 100644 --- a/Makefile +++ b/Makefile @@ -295,6 +295,9 @@ clean: # We use "|| true" for apt-get install because packages are all different on different distros, # and we want to install at least gometalinter on Travis CI. install_prerequisites: + uname -a + sudo apt-get update + apt-cache search gcc | grep gcc | grep aarch64 sudo apt-get install -y -q libc6-dev-i386 linux-libc-dev \ gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-powerpc64le-linux-gnu || true sudo apt-get install -y -q g++-aarch64-linux-gnu g++-powerpc64le-linux-gnu g++-arm-linux-gnueabihf || true -- cgit mrf-deployment