From 1580b0d710330688ab5fdb796c99131ccbe8c663 Mon Sep 17 00:00:00 2001 From: Alastair Donaldson Date: Thu, 4 Jul 2024 09:21:46 +0100 Subject: [PATCH] Try using Clang under Windows to compile single file tests. --- .github/workflows/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.sh b/.github/workflows/build.sh index 362cbbcd..4511d9c8 100755 --- a/.github/workflows/build.sh +++ b/.github/workflows/build.sh @@ -188,8 +188,8 @@ case "$(uname)" in "MINGW"*|"MSYS_NT"*) # On Windows, run the single-file tests - export CC=cl.exe - export CXX=cl.exe + export CC=clang + export CXX=clang++ # The following single-file tests give different expected results on Windows # due to differences in how certain builtin types, such as size_t and