add clang compile options in Windows and Ubuntu

This commit is contained in:
Jonathan Guzmán 2023-02-11 23:27:31 -06:00
parent 9ec7801630
commit 4e0a30ee45
No known key found for this signature in database
GPG Key ID: C2956F1668BA042A

View File

@ -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,