We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d83660 commit dd79efaCopy full SHA for dd79efa
steamworks-sys/build.rs
@@ -23,11 +23,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
23
24
let dylib_src = sdk_src.join("redistributable_bin").join({
25
if triple.contains("windows") {
26
- if !triple.contains("i686") {
+ if triple.starts_with("x86_64") {
27
// This dll has been renamed from `steam_api64` to `steam_api`.
28
"win64/steam_api.dll"
29
} else {
30
- panic!("Unsupported OS");
+ panic!("Unsupported Windows architecture {triple}");
31
}
32
} else if triple.contains("linux") {
33
if triple.contains("i686") {
0 commit comments