Skip to content

Commit

Permalink
path clang lib order based on immunant/c2rust#1100
Browse files Browse the repository at this point in the history
this will fix compilation error on LLVM 18
  • Loading branch information
bungcip committed Jun 27, 2024
1 parent 84b21ee commit a65dc44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions c2rust-ast-exporter/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,12 +180,12 @@ fn build_native(llvm_info: &LLVMInfo) {
let mut clang_libs = vec![
"clangTooling",
"clangFrontend",
"clangASTMatchers",
"clangParse",
"clangSerialization",
"clangSema",
"clangEdit",
"clangAnalysis",
"clangASTMatchers",
"clangSerialization",
"clangEdit",
"clangDriver",
"clangFormat",
"clangToolingCore",
Expand Down Expand Up @@ -390,4 +390,4 @@ impl LLVMInfo {
llvm_major_version,
}
}
}
}

0 comments on commit a65dc44

Please sign in to comment.