Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-10 18:13:01 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-11-10 18:13:01 +0300
commit79e6731297fd3706cec916ffcee32e8730d15ddf (patch)
tree8878d3f176f5699ae8113b5f425492e2a57642f2 /cmake
parente919b61352efdbf28a963ea81fcbea7ed4c7fd30 (diff)
Yet more github actions CI fixes. Also print more about clang failing to discover temporary file paths.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/toolchain-linux-arm.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/cmake/toolchain-linux-arm.cmake b/cmake/toolchain-linux-arm.cmake
index 362e0f55..15973736 100644
--- a/cmake/toolchain-linux-arm.cmake
+++ b/cmake/toolchain-linux-arm.cmake
@@ -1,6 +1,5 @@
set(CMAKE_SYSTEM_NAME Linux)
set(CMAKE_SYSTEM_PROCESSOR armhf)
-set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc)
-set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++)
-set(CMAKE_CXX_STANDARD 17)
+set(CMAKE_C_COMPILER arm-linux-gnueabihf-gcc-8)
+set(CMAKE_CXX_COMPILER arm-linux-gnueabihf-g++-8)
set(CMAKE_CXX_FLAGS_INIT "-Wno-attributes -Wno-psabi")