Skip to content

Commit

Permalink
Unrolled build for rust-lang#131088
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#131088 - klensy:llvm-terminfo, r=Kobzol

add fixme to remove LLVM_ENABLE_TERMINFO when minimal llvm version is 19

`LLVM_ENABLE_TERMINFO` was removed in llvm 19: https://github.com/llvm/llvm-project/blob/release/19.x/llvm/docs/ReleaseNotes.rst#changes-to-building-llvm; current minimal llvm is 18, so left fixme here.
  • Loading branch information
rust-timer authored Oct 1, 2024
2 parents 8dd5cd0 + 50a6a35 commit f4080d2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bootstrap/src/core/build_steps/llvm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,7 @@ impl Step for Llvm {
.define("LLVM_INCLUDE_DOCS", "OFF")
.define("LLVM_INCLUDE_BENCHMARKS", "OFF")
.define("LLVM_INCLUDE_TESTS", enable_tests)
// FIXME: remove this when minimal llvm is 19
.define("LLVM_ENABLE_TERMINFO", "OFF")
.define("LLVM_ENABLE_LIBEDIT", "OFF")
.define("LLVM_ENABLE_BINDINGS", "OFF")
Expand Down

0 comments on commit f4080d2

Please sign in to comment.