Skip to content

Commit

Permalink
Add missing libraries, fix version of backtrace
Browse files Browse the repository at this point in the history
Build now works with rust 1.63
  • Loading branch information
stefanlippuner committed Sep 3, 2023
1 parent 37f9596 commit 450f9ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/circt-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ fn main() {
"LLVMDemangle",
"LLVMRemarks",
"LLVMSupport",
"LLVMTargetParser",
"MLIRAnalysis",
"MLIRArithDialect",
"MLIRArithValueBoundsOpInterfaceImpl",
Expand All @@ -112,6 +113,9 @@ fn main() {
"MLIRSupport",
"MLIRTransformUtils",
"MLIRTransforms",
"MLIRBytecodeWriter",
"MLIRAsmParser",
"MLIRBytecodeReader",
];
for name in &lib_names {
println!("cargo:rustc-link-lib=static={}", name);
Expand Down
2 changes: 1 addition & 1 deletion src/svlog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ log = "0.4"
num = "0.3"
bit-vec = "0.6.2"
itertools = "0.10"
backtrace = "0.3"
backtrace = "=0.3.60"
bitflags = "1.2"
once_cell = "1.3"
2 changes: 1 addition & 1 deletion src/svlog/syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ path = "lib.rs"
moore-common = { path = "../../common", version = "0.14.0" }
moore-derive = { path = "../../derive", version = "0.14.0" }
log = "0.4"
backtrace = "0.3"
backtrace = "=0.3.60"
once_cell = "1.3"

0 comments on commit 450f9ab

Please sign in to comment.