Skip to content

Commit

Permalink
Try build for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Nov 19, 2024
1 parent bb4b0eb commit 5cc5296
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ fn target_to_lib_dir(target: &str) -> Option<&'static str> {
"x86_64-unknown-linux-gnu" => Some("x86_64-linux-gnu.2.27"),
"x86_64-unknown-linux-musl" => Some("x86_64-linux-musl"),
"x86_64-apple-darwin" => Some("x86_64-macos"),
"x86_64-pc-windows-gnu" => Some("x86_64-windows"),
"x86_64-pc-windows-msvc" => Some("x86_64-windows"),
_ => None,
}
Expand All @@ -35,6 +36,7 @@ fn target_to_tigerbeetle_target(target: &str) -> Option<&'static str> {
"x86_64-unknown-linux-gnu" => Some("x86_64-linux"),
"x86_64-unknown-linux-musl" => Some("x86_64-linux-musl"),
"x86_64-apple-darwin" => Some("x86_64-macos"),
"x86_64-pc-windows-gnu" => Some("x86_64-windows"),
"x86_64-pc-windows-msvc" => Some("x86_64-windows"),
_ => None,
}
Expand Down

0 comments on commit 5cc5296

Please sign in to comment.