From 44fd796096b643ef9d2b8df36bdce38ec222064a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 13 Apr 2019 01:20:01 +0000 Subject: [PATCH] Add support for powerpc64le systems Note this will require the compiled Clang package to be added to the binary repository --- package-arduino-preprocessor.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package-arduino-preprocessor.bash b/package-arduino-preprocessor.bash index 451c41b..2e0eef4 100755 --- a/package-arduino-preprocessor.bash +++ b/package-arduino-preprocessor.bash @@ -73,6 +73,9 @@ if [[ $OS == "GNU/Linux" ]] ; then elif [[ $MACHINE == "armv7l" ]] ; then OUTPUT_TAG=armhf-pc-linux-gnu fetch_llvm https://github.com/cmaglie/llvm-clang-build-scripts/releases/download/4.0.0/llvm-clang-4.0.0-linux-arm.tar.xz + elif [[ $MACHINE == "ppc64le" ]] ; then + OUTPUT_TAG=powerpc64le-pc-linux-gnu + fetch_llvm https://github.com/cmaglie/llvm-clang-build-scripts/releases/download/4.0.0/llvm-clang-4.0.0-linux-powerpc64le.tar.xz else echo Linux Machine not supported: $MACHINE exit 1