From: Cesar Strauss Date: Sat, 23 Mar 2024 20:36:53 +0000 (-0300) Subject: Install powerpc gcc without a trailing "8" X-Git-Url: https://git.libre-soc.org/?p=dev-env-setup.git;a=commitdiff_plain;h=8e0bca8a18b8ac865623cfe308393bde00b73a50 Install powerpc gcc without a trailing "8" This is needed by the Makefile of Microwatt's Hello World binary --- diff --git a/install-hdl-apt-reqs b/install-hdl-apt-reqs index cc4beed..6ade398 100755 --- a/install-hdl-apt-reqs +++ b/install-hdl-apt-reqs @@ -73,3 +73,6 @@ apt-get -t buster-backports install -y qemu-system-ppc/buster-backports # if doing this on ppc64le it may fail apt-get install -y gcc-8-powerpc64-linux-gnu apt-get install -y gcc-8-powerpc64le-linux-gnu +# install the gcc binaries above, but without the trailing "8" +apt-get install -y gcc-powerpc64-linux-gnu +apt-get install -y gcc-powerpc64le-linux-gnu