From 4e0a30ee457dea7303cae8f0eb07c15d14753182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Guzm=C3=A1n?= Date: Sat, 11 Feb 2023 23:27:31 -0600 Subject: [PATCH] add clang compile options in Windows and Ubuntu --- .github/workflows/meson.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/meson.yaml b/.github/workflows/meson.yaml index ebddd3e..109db69 100644 --- a/.github/workflows/meson.yaml +++ b/.github/workflows/meson.yaml @@ -26,6 +26,12 @@ jobs: cc: "gcc", cxx: "g++", extra_path: "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw64\\bin", } + - { + name: "Windows Latest Clang", + os: windows-latest, + cc: "clang", cxx: "clang++", c_ld: "lld-link", cxx_ld: "lld-link", + extra_path: "", + } - { name: "Ubuntu Latest GCC", os: ubuntu-latest, @@ -34,6 +40,12 @@ jobs: cc: "gcc", cxx: "g++", extra_path: "" } + - { + name: "Ubuntu Latest Clang", + os: ubuntu-latest, + cc: "clang", cxx: "clang++", c_ld: "lld", cxx_ld: "lld", + extra_path: "" + } - { name: "macOS Latest Clang", os: macos-latest,