diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ffe1720..ef224db1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.25](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.24...cc-v1.2.25) - 2025-05-30 + +### Other + +- make `powerp64` use `powerpc64-linux-gnu` prefix ([#1474](https://github.com/rust-lang/cc-rs/pull/1474)) + ## [1.2.24](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.23...cc-v1.2.24) - 2025-05-23 ### Other diff --git a/Cargo.toml b/Cargo.toml index 29286750..ce11be16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cc" -version = "1.2.24" +version = "1.2.25" authors = ["Alex Crichton "] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-lang/cc-rs" diff --git a/dev-tools/wasm32-wasip1-threads-test/Cargo.toml b/dev-tools/wasm32-wasip1-threads-test/Cargo.toml index 444fa323..f4d7ba45 100644 --- a/dev-tools/wasm32-wasip1-threads-test/Cargo.toml +++ b/dev-tools/wasm32-wasip1-threads-test/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -rusqlite = { version = "0.35.0", features = ["bundled"] } +rusqlite = { version = "0.36.0", features = ["bundled"] } diff --git a/src/lib.rs b/src/lib.rs index 05fec229..87b1d06b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3490,7 +3490,7 @@ impl Build { "powerpc-unknown-linux-gnu" => Some("powerpc-linux-gnu"), "powerpc-unknown-linux-gnuspe" => Some("powerpc-linux-gnuspe"), "powerpc-unknown-netbsd" => Some("powerpc--netbsd"), - "powerpc64-unknown-linux-gnu" => Some("powerpc-linux-gnu"), + "powerpc64-unknown-linux-gnu" => Some("powerpc64-linux-gnu"), "powerpc64le-unknown-linux-gnu" => Some("powerpc64le-linux-gnu"), "riscv32i-unknown-none-elf" => self.find_working_gnu_prefix(&[ "riscv32-unknown-elf",