-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Leverage another LLVM binary to locate current clang binary (#23)
* Leverage another LLVM binary to locate current clang binary Different distros package LLVM / clang into different setups: * Fedora 41's clang package provides clang, clang-19 and llvm-ar * Ubuntu 24.04's clang package provides clang, clang-18 and llvm-ar-18 Previously, we rely on clang's binary name to infer names for other binaries. But given the above packaging reality, relying on binary clang introduces ambiguity. This commit changes the code so we now rely on another binary, such as llvm-strip or llvm-strip-18 to detect the suffix, and then piece together the binary names we will invoke. * Add sudo permission in CI * Eliminate rev command for windows usage
- Loading branch information
Showing
3 changed files
with
30 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters