We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61cc47e commit 6847bd0Copy full SHA for 6847bd0
src/bootstrap/src/core/config/toml/llvm.rs
@@ -117,7 +117,7 @@ pub fn check_incompatible_options_for_ci_llvm(
117
enable_warnings,
118
download_ci_llvm: _,
119
build_config,
120
- enzyme: _,
+ enzyme,
121
} = ci_llvm_config;
122
123
err!(current_llvm_config.optimize, optimize);
@@ -139,6 +139,7 @@ pub fn check_incompatible_options_for_ci_llvm(
139
err!(current_llvm_config.clang, clang);
140
err!(current_llvm_config.build_config, build_config);
141
err!(current_llvm_config.plugins, plugins);
142
+ err!(current_llvm_config.enzyme, enzyme);
143
144
warn!(current_llvm_config.enable_warnings, enable_warnings);
145
0 commit comments