-
-
Notifications
You must be signed in to change notification settings - Fork 415
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly find custom-built
llc
(#4537)
Use `HINTS` instead of `PATHS` in the CMake `find_path` command that tries to find our custom-built `llc`. `HINTS` is searched before the system `PATH`, so a system `llc` will now no longer be picked before ours. --------- Co-authored-by: Sean T Allen <sean@seantallen.com>
- Loading branch information
1 parent
23c2bc9
commit 108289b
Showing
2 changed files
with
4 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Correctly find custom-built `llc` during build process | ||
|
||
Previously our CMake build was failing to find our custom-built `llc` binary, but builds worked by accident if there was a system `llc`. The build system now finds our custom `llc` correctly. |
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