-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[CMake] Fix variable name #127967
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CMake] Fix variable name #127967
Conversation
This was accidentaly introduced in llvm#126876.
@llvm/pr-subscribers-clang Author: Petr Hosek (petrhosek) ChangesThis was accidentaly introduced in #126876. Full diff: https://github.com/llvm/llvm-project/pull/127967.diff 1 Files Affected:
diff --git a/clang/utils/perf-training/CMakeLists.txt b/clang/utils/perf-training/CMakeLists.txt
index 0c1cdd9a1fb60..1d7bb788a15ed 100644
--- a/clang/utils/perf-training/CMakeLists.txt
+++ b/clang/utils/perf-training/CMakeLists.txt
@@ -9,7 +9,7 @@ set(CLANG_PGO_TRAINING_DEPS "" CACHE STRING "Extra dependencies needed to build
option(CLANG_PGO_TRAINING_USE_LLVM_BUILD "Use LLVM build for generating PGO data" ON)
llvm_canonicalize_cmake_booleans(
- CLANG_PGO_TRAINING_USE_LLVM
+ CLANG_PGO_TRAINING_USE_LLVM_BUILD
)
if(LLVM_BUILD_INSTRUMENTED)
|
Please merge this soon. This has broken our CI miserably and has blocked all our testing. Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. I confirmed this fixes the release build configuration.
|
Oh.. I see. Thanks! |
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/18/builds/11773 Here is the relevant piece of the build log for the reference
|
This was accidentaly introduced in #126876.